getBool method

bool? getBool(
  1. String key
)

Get the boolean value against a key

Implementation

bool? getBool(String key) {
  return _prefs?.getBool(key);
}