toWasm method
Returns this as a WASM canonical abi value.
Implementation
List<Object?> toWasm() => [
ItemInput.toWasm(item),
(options == null
? const None().toWasm()
: Option.fromValue(options).toWasm((some) => some.toWasm()))
];