toWasm method

List<Object?> toWasm()
override

Returns this as a WASM canonical abi value.

Implementation

List<Object?> toWasm() => [
      values
          .map((e) => e.map((e) => e.toWasm()).toList(growable: false))
          .toList(growable: false)
    ];