remove method

  1. @mustCallSuper
Future<void> remove(
  1. String identifier
)
inherited

Remove content from storage/cache

Implementation

@mustCallSuper
Future<void> remove(String identifier) async {
  _contents.remove(identifier);
  _cacheDates.remove(identifier);
  return;
}