getGlobalStore<T> static method

Store<T>? getGlobalStore<T>(
  1. String id
)

Get a global store by ID

Implementation

static Store<T>? getGlobalStore<T>(String id) {
  return StoreRegistry.instance.getStore<T>(id);
}