callHandler method

Future callHandler(
  1. dynamic arguments
)

Implementation

Future callHandler(dynamic arguments) {
  final value = asFunc != null ? asFunc!(arguments) : arguments;
  return handler(value);
}