Files
flutter_server_box/lib/data/store/first.dart
2023-10-18 19:14:06 +08:00

10 lines
288 B
Dart

import 'package:toolbox/core/persistant_store.dart';
/// It stores whether is the first time of some.
class FirstStore extends PersistentStore<bool> {
FirstStore() : super('first');
/// Show tip of suspend
late final showSuspendTip = StoreProperty(box, 'showSuspendTip', true);
}