update faltan los ifs

This commit is contained in:
Felipe
2024-05-24 17:53:12 -05:00
parent 5db51bc86a
commit f1b2497c92
6 changed files with 284 additions and 38 deletions
@@ -407,7 +407,8 @@ class FirebaseUserRepository implements UserRepository {
@override
Future<List<MyUser>> getUsersFromIds(Iterable<String> ids) async {
try {
final querySnapshot = await usersCollection.where(FieldPath.documentId, whereIn: ids).get();
final querySnapshot =
await usersCollection.where(FieldPath.documentId, whereIn: ids).get();
return querySnapshot.docs
.map((e) => MyUser.fromEntity(MyUserEntity.fromDocument(e.data())))