clearStore function

void clearStore(
  1. String name
)

Clears a store (useful for testing or logout).

Implementation

void clearStore(String name) {
  _stores.remove(name);
  _storeRefs.remove(name);
}