getBool static method

bool? getBool(
  1. String key
)

Gets a boolean value from storage.

Implementation

static bool? getBool(String key) {
  _ensureInitialized();
  return _prefs!.getBool(key);
}