storesAvailableAsync property

Future<List<StoreDirectory>> storesAvailableAsync

List all the available StoreDirectorys asynchronously

Implementation

Future<List<StoreDirectory>> get storesAvailableAsync => Future.wait(
      _registry.storeDatabases.values.map(
        (e) async => StoreDirectory._(
          (await e.descriptor).name,
          autoCreate: false,
        ),
      ),
    );