invokeFlatAsync method
Future<List<Object?> >
invokeFlatAsync(
- int canonicalIndex,
- List<
Object?> args, { - Memory? memory,
- WASIComponentCanonicalRealloc? realloc,
Invokes a flat Canonical ABI operation by canonical index and waits when supported.
Implementation
Future<List<Object?>> invokeFlatAsync(
int canonicalIndex,
List<Object?> args, {
wasm.Memory? memory,
WASIComponentCanonicalRealloc? realloc,
}) {
return _operationAt(
canonicalIndex,
).invokeFlatAsync(args, memory: memory, realloc: realloc);
}