SignUpStatusError enum
A list of errors returned by the server
Values
- INCORRECT_EMAIL → const SignUpStatusError
-
The email provided is incorrect
- EMAIL_ALREADY_USED → const SignUpStatusError
-
The email provided is already used by another user
- USERNAME_ALREADY_USED → const SignUpStatusError
-
The username provided is already used by another user
- INVALID_USERNAME → const SignUpStatusError
-
The username is invalid (empty or with invalid characters) Only unaccented letters, digits and dashes are accepted
- INVALID_PASSWORD → const SignUpStatusError
-
The password is incorrect (too short)
- UNKNOWN → const SignUpStatusError
-
Generic error
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<
SignUpStatusError> - A constant List of the values in this enum, in order of their declaration.