readUsersFirebase function
Implementation
Stream<List<UserLocal>> readUsersFirebase() => FirebaseFirestore.instance
.collection('users2')
.snapshots()
.map((snapshot) =>
snapshot.docs.map((doc) => UserLocal.fromJson(doc.data())).toList());