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
Constructors
- AuthProviderType(int _value)
-
const
Values
- anonymous → const AuthProviderType
-
For authenticating without credentials.
AuthProviderType(0)
- facebook → const AuthProviderType
-
Authenticate with Facebook account.
AuthProviderType(2)
- google → const AuthProviderType
-
Authenticate with Google account
AuthProviderType(3)
- apple → const AuthProviderType
-
Authenticate with Apple Id
AuthProviderType(4)
- jwt → const AuthProviderType
-
For authenticating with JSON web token.
AuthProviderType(5)
- emailPassword → const AuthProviderType
-
For authenticating with an email and a password.
AuthProviderType(6)
- function → const AuthProviderType
-
For authenticating with custom function with payload argument.
AuthProviderType(7)
- apiKey → const AuthProviderType
-
For authenticating with an API key.
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.
[anonymous, _anonymousNoReuse, facebook, google, apple, jwt, emailPassword, function, apiKey]