CommandAction1<T extends Object, A> typedef
CommandAction1<T extends Object, A> =
AsyncResult<T> Function(A)
A function that defines a command action with one argument of type A.
The action returns an AsyncResult of type T.
Implementation
typedef CommandAction1<T extends Object, A> = AsyncResult<T> Function(A);