handlerCall static method

Future handlerCall(
  1. MethodCaller caller,
  2. List args,
  3. CallConfig? withOptions
)

Implementation

static Future<dynamic> handlerCall(
  MethodCaller caller,
  List<dynamic> args,
  CallConfig? withOptions,
) {
  return caller(withOptions ?? const CallConfig(), args);
}