getBool static method

Future<bool?> getBool(
  1. String key
)

Retrieves a stored boolean value.

Implementation

static Future<bool?> getBool(String key) async {
  return _sharedPreferences.getBool(key);
}