get method

Future<Uint8List> get(
  1. String key
)

Retrieves the cached byte data for the given key.

Delegates to the underlying platform-specific Cache implementation. Throws if the key is not found.

Implementation

Future<Uint8List> get(String key) => _cache.get(key);