FormResult class
The confirmed result of a FormPrompt, containing all field values.
Access values by index:
final password = result[0];
final verify = result[1];
Constructors
-
FormResult(List<
String> values) -
const
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
-
operator [](
int index) → String -
Returns the value at
index.