FunctionArg<T, A> typedef
FunctionArg<T, A> =
T Function(A arg)
to represent a function with arguments
Implementation
typedef FunctionArg<T, A> = T Function(A arg);
to represent a function with arguments
typedef FunctionArg<T, A> = T Function(A arg);