get method

  1. @override
Future<Uint8List?> get({
  1. required String key,
})
override

Retrieves the data cached under the spefied key if available, null otherwise.

Implementation

@override
Future<Uint8List?> get({required String key})=> _cache.get(key: key);