readBool method
Method for getting a Boolean with a defined key.
Example:
// RCache.common.readBool(key: RCacheKey("bool"));
Implementation
@override
Future<bool?> readBool({required RCacheKey key}) async {
  try {
    return await methodChannel.invokeMethod(
      RCacheMethod.key.read.bool,
      rArgs(type: RCacheMethod.key.common, key: key),
    );
  } on PlatformException catch (e) {
    return Future.error(e);
  }
}