AuthProviderType enum Application
An enum containing all authentication providers. These have to be enabled manually for the application before they can be used. Authentication Providers Docs
Values
- anonymous → const AuthProviderType
-
For authenticating without credentials.
const AuthProviderType(0)
- facebook → const AuthProviderType
-
Authenticate with Facebook account.
const AuthProviderType(2)
- google → const AuthProviderType
-
Authenticate with Google account
const AuthProviderType(3)
- apple → const AuthProviderType
-
Authenticate with Apple Id
const AuthProviderType(4)
- jwt → const AuthProviderType
-
For authenticating with JSON web token.
const AuthProviderType(5)
- emailPassword → const AuthProviderType
-
For authenticating with an email and a password.
const AuthProviderType(6)
- function → const AuthProviderType
-
For authenticating with custom function with payload argument.
const AuthProviderType(7)
- apiKey → const AuthProviderType
-
For authenticating with an API key.
const AuthProviderType(8)
Properties
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<
AuthProviderType> - A constant List of the values in this enum, in order of their declaration.