get method
Gets a value with the given key.
Returns the cached value as bytes, or null if not found.
Implementation
@override
Future<Uint8List?> get(String key) async {
Uint8List? result;
_cache.tryGetValue<Uint8List>(key, (value) => result = value);
return result;
}