toCbor method

  1. @override
CborObject toCbor()
override

Converts the object to a CBOR object.

Implementation

@override
CborObject toCbor() {
  if (multiAsset == null) return CborUnsignedValue.u64(coin);
  return CborListValue.fixedLength(
      [CborUnsignedValue.u64(coin), multiAsset!.toCbor()]);
}