AuthUsers class abstract final

Management functions for auth users.

Properties

hashCode int
The hash code for this object.
no setterinherited
runtimeType Type
A representation of the runtime type of the object.
no setterinherited

Methods

noSuchMethod(Invocation invocation) → dynamic
Invoked when a nonexistent method or property is accessed.
inherited
toString() String
A string representation of this object.
inherited

Operators

operator ==(Object other) bool
The equality operator.
inherited

Static Methods

create(Session session, {Set<Scope> scopes = const {}, bool blocked = false, Transaction? transaction}) Future<AuthUserModel>
Creates a new auth user.
delete(Session session, {required UuidValue authUserId, Transaction? transaction}) Future<void>
Removes the specified auth user.
get(Session session, {required UuidValue authUserId, Transaction? transaction}) Future<AuthUserModel>
Retrieves an auth user.
list(Session session, {Transaction? transaction}) Future<List<AuthUserModel>>
Returns all auth users.
update(Session session, {required UuidValue authUserId, Set<Scope>? scopes, bool? blocked, Transaction? transaction}) Future<AuthUserModel>
Updates an auth user.