get method

  1. @override
Future<Uint8List> get(
  1. String key
)
override

Retrieves the value associated with the key.

Throws an exception if the key is not found.

Implementation

@override
Future<Uint8List> get(String key) {
  throw UnimplementedError(
    'Cache is not available in your current platform.',
  );
}