remove method

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

Removes the cached data associated with the given key.

Returns true to indicate a successful removal operation.

Implementation

@override
Future<bool> remove(String key) async {
  return _cache.remove(key) != null;
}