import 'package:flutter/foundation.dart'; import 'persisted_setting.dart'; class AppCommands { static const prefKey = 'dev_commands'; static const bool defaultValue = false; static final _setting = PersistedSetting( prefKey: prefKey, defaultValue: defaultValue, read: (prefs, key) => prefs.getBool(key), write: (prefs, key, value) async { await prefs.setBool(key, value); }, ); static ValueNotifier get current => _setting.current; static Future load() => _setting.load(); static Future save(bool value) => _setting.save(value); }