readBool abstract method

Future<bool?> readBool({
  1. required RCacheKey key,
})

Method for getting a Boolean with a defined key.

Example:

// RCaching.instance.readBool(key: RCacheKey("bool"));

Implementation

Future<bool?> readBool({required RCacheKey key});