mirror of
https://github.com/lollipopkit/flutter_server_box.git
synced 2025-12-17 15:24:35 +01:00
11 lines
372 B
Dart
11 lines
372 B
Dart
import 'package:toolbox/core/persistant_store.dart';
|
|
|
|
/// It stores whether is the first time of some.
|
|
class FirstStore extends PersistentStore<bool> {
|
|
/// Add Snippet `Install ServerBoxMonitor`
|
|
late final iSSBM = StoreProperty(box, 'installMonitorSnippet', true);
|
|
|
|
/// Show tip of suspend
|
|
late final showSuspendTip = StoreProperty(box, 'showSuspendTip', true);
|
|
}
|