getBool static method

bool getBool(
  1. String key, {
  2. bool defaultValue = false,
})

Gets a boolean value from SharedPreferences.

Implementation

static bool getBool(String key, {bool defaultValue = false}) {
  return prefs!.getBool(key) ?? defaultValue;
}