FormResultStatus enum
An enumeration representing the various statuses of a form's result.
Values
- initializing → const FormResultStatus
-
The form is in the process of initializing.
- initialized → const FormResultStatus
-
The form has been initialized and is ready for user interaction.
- error → const FormResultStatus
-
An error has occurred, preventing successful submission or processing.
- submitting → const FormResultStatus
-
The form is currently in the process of being submitted.
- submittingSuccess → const FormResultStatus
-
The form was submitted successfully.
- submittingLocalSuccess → const FormResultStatus
-
The form was submitted successfully but only for local processing.
- submittingError → const FormResultStatus
-
An error occurred during the submission process.
- submittingLocalError → const FormResultStatus
-
An error occurred during local submission processing.
- validationError → const FormResultStatus
-
There was a validation error in the submitted data.
Properties
- 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<
FormResultStatus> - A constant List of the values in this enum, in order of their declaration.