getAsync method

dynamic getAsync(
  1. dynamic function(
    1. T
    )
)

Implementation

getAsync(Function(T) function) async {
  return await handlerz.getAsync<T>(function);
}