Files
flutter_server_box/lib/data/store/setting.dart
2021-09-13 14:25:54 +08:00

7 lines
196 B
Dart

import 'package:toolbox/core/persistant_store.dart';
class SettingStore extends PersistentStore {
StoreProperty<bool> get receiveNotification =>
property('notify', defaultValue: true);
}