asm property

String get asm

Returns the ASM string representation of the script. All data and integers are provided in hex format.

Implementation

String get asm => _asmCache ??= ops.map((op) => op.asm).join(" ");