invokeFlat method
List<Object?>
invokeFlat(
- int canonicalIndex,
- List<
Object?> args, { - Memory? memory,
- 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);
}