removeByPrefix method

  1. @override
void removeByPrefix(
  1. String prefix
)
override

Implementation

@override
void removeByPrefix(String prefix) {
  _cache.removeWhere((key, _) => key.startsWith(prefix));
}