getBoolean static method

bool getBoolean(
  1. String key
)

Reads a boolean for key or returns false.

Implementation

static bool getBoolean(String key) {
  final bool? value = _prefs.getBool(key);
  return value ?? false;
}