init method

Future<void> init()

Implementation

Future<void> init() async {
  _store = await Hive.openBox("hu.systicore.authenticator.app");
  _store.get("themeMode") != null
      ? setThemeMode(_store.get("themeMode"))
      : setThemeMode("system");
  log("HIVE - Setting theme mode to ${WidgetsBinding.instance.platformDispatcher.platformBrightness.toString()}");
}