AsyncFunctionArg<T, A> typedef
AsyncFunctionArg<T, A> =
Future<T> Function(A arg)
to represent an async function with arguments
Implementation
typedef AsyncFunctionArg<T, A> = Future<T> Function(A arg);