getBool static method

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

Retrieves a bool value from storage.

Implementation

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