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