get_command library

Classes

CommandState
Represents the current state of a command.
GetCommand
GetCommandP1<P1>
Command with one generic parameter.
GetCommandP2<P1, P2>
Command with two generic parameters.
GetCommandP3<P1, P2, P3>
Command with three generic parameters.

Typedefs

ErrorMessageProvider = FutureOr<String> Function(Exception exception)
Error message callback. The result string will be used as the error message.
VoidFunc = FutureOr<void> Function()
Void function without any parameters.
VoidFuncWith1Parameter<P1> = FutureOr<void> Function(P1 p1)
Void function with one generic parameter.
VoidFuncWith2Parameters<P1, P2> = FutureOr<void> Function(P1 p1, P2 p2)
Void function with two generic parameter.
VoidFuncWith3Parameters<P1, P2, P3> = FutureOr<void> Function(P1 p1, P2 p2, P3)
Void function with three generic parameter.