mirror of
https://github.com/lollipopkit/flutter_server_box.git
synced 2025-12-17 15:24:35 +01:00
7 lines
196 B
Dart
7 lines
196 B
Dart
import 'package:toolbox/core/persistant_store.dart';
|
|
|
|
class SettingStore extends PersistentStore {
|
|
StoreProperty<bool> get receiveNotification =>
|
|
property('notify', defaultValue: true);
|
|
}
|