users property

Stream<List<User>> users

Implementation

Stream<List<User>> get users {
  //takes user info from collection and creates a list of user objects
  return _userCollection.snapshots().map(_userListFromSnapshot);
}