getBool method

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

Reads named value from the storage. Returns the read value or null if value does not exist.

Implementation

@override
Future<bool?> getBool(String key) async => (await this.sp).getBool(key);