getIsFirstLoad method

Future<bool> getIsFirstLoad()

Implementation

Future<bool> getIsFirstLoad() async {
  sharedPref = await _sharedPreferences;
  return sharedPref?.getBool("IsFirstLoad") ?? true;
}