getSkipLogin static method

Future<bool> getSkipLogin()

Implementation

static Future<bool> getSkipLogin() async {
  SharedPreferences preferences = await SharedPreferences.getInstance();
  return preferences.getBool("skipLogin") ?? false;
}