invokeFlat method

List<Object?> invokeFlat(
  1. int canonicalIndex,
  2. List<Object?> args, {
  3. Memory? memory,
  4. WASIComponentCanonicalRealloc? realloc,
})

Invokes a flat Canonical ABI operation by canonical index.

Implementation

List<Object?> invokeFlat(
  int canonicalIndex,
  List<Object?> args, {
  wasm.Memory? memory,
  WASIComponentCanonicalRealloc? realloc,
}) {
  return _operationAt(
    canonicalIndex,
  ).invokeFlat(args, memory: memory, realloc: realloc);
}