dispose static method
Implementation
static dispose(String action) {
for (final key in _storeMap.keys.toList(growable: false)) {
if (key.startsWith(action)) {
final v = _storeMap.remove(key);
FastNotification.push('Store::$key', null);
FastNotification.push('Store::$key::dispose', v);
}
}
}