contains method

  1. @override
Future<bool> contains(
  1. String key
)
override

Checks if the cache contains an entry for the given key.

Implementation

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