users property

Iterable<User> get users

Gets all currently logged in users.

Implementation

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