callFunction method

Future<Object?> callFunction(
  1. String module,
  2. String function,
  3. Object? input
)

Invoke any ball function by module and function name with input.

Implementation

Future<Object?> callFunction(String module, String function, Object? input) =>
    _resolveAndCallFunction(module, function, input);