getStore static method

IStore? getStore(
  1. String name
)
Get a store by its name. Store instance name

Implementation

static IStore? getStore(String name) {
  for (var s in _stores) if (s.instance?.name == name) return s;
  return null;
}