invokeAsync method

Future<Object?> invokeAsync(
  1. int canonicalIndex,
  2. List<Object?> args
)

Invokes a canonical operation and waits when the operation supports it.

Implementation

Future<Object?> invokeAsync(int canonicalIndex, List<Object?> args) {
  return _operationAt(canonicalIndex).invokeAsync(args);
}