readIsFirstRun method

Future<bool> readIsFirstRun()

Implementation

Future<bool> readIsFirstRun() async {
  SharedPreferences mStorage = await getStorage();
  return mStorage.getBool(isFirstRun) ?? true;
}