storesAvailable property

Future<List<FMTCStore>> get storesAvailable

List all the available stores

Implementation

Future<List<FMTCStore>> get storesAvailable => FMTCBackendAccess.internal
    .listStores()
    .then((s) => s.map(FMTCStore.new).toList());