ActionResult class
A class to return an Action's execution result. success - a boolean indicating if an Action was successfully executed. returnData - an optional data to be returned from the Action's execution. nextAction - an optional Map with an Action specification (e.g.: an 'IfAction' evaluates a condition and either the 'true' Action or the 'false' Action will be returned).
- Implementers
Constructors
- ActionResult(bool success, {dynamic returnData, Map? nextAction, String? failureMessage})
Properties
- failureMessage → String?
-
final
- hashCode → int
-
The hash code for this object.
no setterinherited
- nextAction → Map?
-
final
- returnData → dynamic
-
final
- runtimeType → Type
-
A representation of the runtime type of the object.
no setterinherited
- success → bool
-
final
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