clear method

void clear()

Clears the cache. This will remove all of the local cached events.

Implementation

void clear() async {
  _cache.clear();

  if (!kIsWeb) {
    await _save();
  }
}