set method

  1. @override
Future<void> set(
  1. String key,
  2. Uint8List value
)
override

Stores the given value associated with the key.

If the key already exists, its value is overwritten.

Implementation

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