getBool static method

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

Implementation

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