toWasm method

List<Object?> toWasm()
override

Returns this as a WASM canonical abi value.

Implementation

List<Object?> toWasm() => [
      target.toWasm(),
      keys.map((e) => [e.$1, e.$2.toWasm()]).toList(growable: false),
      path.map(EventPathItem.toWasm).toList(growable: false)
    ];