getBoolean method

  1. @override
Future<bool?> getBoolean(
  1. String key
)
override

Implementation

@override
Future<bool?> getBoolean(String key) async {
  final map = await read();
  return map[key] as bool?;
}