import 'package:flutter/foundation.dart'; import 'persisted_setting.dart'; class AppWallpaperTint { static const prefKey = 'app_wallpaper_tint'; static final _setting = PersistedSetting( prefKey: prefKey, defaultValue: false, 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); }