clear method

  1. @override
Future<void> clear()
override

Clears the contents of the cache

Implementation

@override
Future<void> clear() {
  return _primary.clear().then((any) => _secondary.clear());
}