getBool static method

bool getBool(
  1. String key
)

Implementation

static bool getBool(String key) {
  return _prefs == null ? false : _prefs!.getBool(key) ?? false;
}