toWasm method

List<Object?> toWasm()
override

Returns this as a WASM canonical abi value.

Implementation

List<Object?> toWasm() => [
      path,
      (name == null
          ? const None().toWasm()
          : Option.fromValue(name).toWasm()),
      allRecursive
    ];