users property

Iterable<User> users

Gets all currently logged in users.

Implementation

Iterable<User> get users {
  return realmCore.getUsers(this).map((handle) => UserInternal.create(handle, this));
}