SignUpStatusError enum

A list of errors returned by the server

Inheritance

Constructors

SignUpStatusError()
const

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)

SERVER_BUSY → const SignUpStatusError

When the server is down (504 Gateway timeout)

UNKNOWN → const SignUpStatusError

Generic error

Properties

hashCode int
The hash code for this object.
no setterinherited
index int
A numeric identifier for the enumerated value.
no setterinherited
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<SignUpStatusError>
A constant List of the values in this enum, in order of their declaration.