getBool method

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

Implementation

Future<bool?> getBool(String key) async {
  return await _getValue<bool>(key, _getBool);
}