readDouble abstract method

Future<double?> readDouble({
  1. required RCacheKey key,
})

Method for getting a Double with a defined key.

Example:

// RCaching.instance.readDouble(key: RCacheKey("double"));

Implementation

Future<double?> readDouble({required RCacheKey key});