callAsync abstract method

Future<void> callAsync(
  1. int nArgs,
  2. int nResults
)

Asynchronously call a function. Use this when the function being called might be an async Dart function.

Implementation

Future<void> callAsync(int nArgs, int nResults);