issueToken abstract method
Issues an authentication token.
Creates a new authentication token for the specified user with the given authentication method and optional scopes.
Returns an AuthSuccess containing the generated token and user information.
Implementation
Future<AuthSuccess> issueToken(
final Session session, {
required final UuidValue authUserId,
required final String method,
final Set<Scope>? scopes,
final Transaction? transaction,
});