fetchHumans method

Future<List<Doc<UserEntity>>> fetchHumans (
  1. Store store
)

Implementation

Future<List<Doc<UserEntity>>> fetchHumans(Store store) async => Future.wait(
      humans.map((human) async => UserEntity.decode(store, await human.get())).toList(),
    );