getBoolAsync function

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

Returns a Bool if exists in SharedPref

Implementation

bool getBoolAsync(String key, {bool defaultValue = false}) {
  return sharedPreferences.getBool(key) ?? defaultValue;
}