getBool method

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

Implementation

bool getBool(String key, {bool optionalValue = false}) => _sharedPreferences.getBool(key) ?? optionalValue;