AuthProvider enum
The authentication provider used to sign in the user.
This enum is hand-written rather than generated: it classifies JWTs by issuer server-side and never crosses the wire, so it is not part of the OpenAPI spec.
Values
- google → const AuthProvider
-
The user authenticated using their Google account with our GCP project.
const AuthProvider('Google') - microsoft → const AuthProvider
-
The user authenticated with their Azure/Entra account.
const AuthProvider('Microsoft') - quickpatch → const AuthProvider
-
The user authenticated via QuickPatch's own auth service.
const AuthProvider('QuickPatch')
Properties
- displayName → String
-
The user-friendly display name for the authentication provider.
final
- hashCode → int
-
The hash code for this object.
no setterinherited
- index → int
-
A numeric identifier for the enumerated value.
no setterinherited
- name → String
-
Available on Enum, provided by the EnumName extension
The name of the enum value.no setter - 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
Constants
-
values
→ const List<
AuthProvider> - A constant List of the values in this enum, in order of their declaration.