clear method

void clear()

Clears proxy dependencies and proxies from the store.

Implementation

void clear() {
  _store.forEach((key, value) => destroy(key));
  _store.clear();
}