FunctionsAction<TResponse> class abstract

Actions used in Functions.

Inherit and use.

When executing a Function, pass the object to Functions.execute to execute the Function.

Functionsで用いるアクション。

継承して使ってください。

実行する際はオブジェクトをFunctions.executeに渡してFunction実行します。

final functions = Functions();
final response = functions.execute(AnyFunctionsAction());
Implementers
Available Extensions

Constructors

FunctionsAction()
Actions used in Functions.
const

Properties

action String
Action Name.
no setter
hashCode int
The hash code for this object.
no setterinherited
runtimeType Type
A representation of the runtime type of the object.
no setterinherited

Methods

execute(Future<DynamicMap?> callback(DynamicMap? map)) Future<TResponse>
The value is actually passed to the server side for execution.
noSuchMethod(Invocation invocation) → dynamic
Invoked when a nonexistent method or property is accessed.
inherited
toMap() DynamicMap?
Convert to DynamicMap to pass values to the server side.
toResponse(DynamicMap map) → TResponse
Converts the value returned from the server side to TResponse.
toString() String
A string representation of this object.
inherited

Operators

operator ==(Object other) bool
The equality operator.
inherited