activeStoreIds property
Active store identities advertised by listStoresMethod.
Implementation
static List<String> get activeStoreIds {
final storeIds =
_vmControllers.values
.where((controller) => !controller.isDisposed)
.map((controller) => controller.storeId)
.toList()
..sort();
return List.unmodifiable(storeIds);
}