toCbor method
Converts the object to a CBOR object.
Implementation
@override
CborObject toCbor() {
return CborListValue.fixedLength([
body.toCbor(),
witnessSet.toCbor(),
CborBoleanValue(isValid),
data?.toCbor(),
]);
}
Converts the object to a CBOR object.
@override
CborObject toCbor() {
return CborListValue.fixedLength([
body.toCbor(),
witnessSet.toCbor(),
CborBoleanValue(isValid),
data?.toCbor(),
]);
}