toWasm method
Returns this as a WASM canonical abi value.
Implementation
List<Object?> toWasm() => [
compressionMethod.toWasm(),
lastModifiedTime,
(permissions == null
? const None().toWasm()
: Option.fromValue(permissions).toWasm()),
comment,
file.toWasm(),
crc32,
compressedSize,
extraData,
isDir,
(enclosedName == null
? const None().toWasm()
: Option.fromValue(enclosedName).toWasm())
];