saveSettings method
- @override
override
Saves theme settings to a backend.
Implementation
@override
Future<void> saveSettings() async {
themeDb = await Hive.openBox('theme');
themeDb.put('type', themeTypeNameLookup[themeType]);
themeDb.put('system', useSystem.toString());
}