fetchBool abstract method

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

Asynchronously reads the stored boolean with the given key. If no boolean value is saved, the returned value will be null.

Implementation

Future<bool?> fetchBool(String key);