getBool method

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

Implementation

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