toCbor method
Converts the object to a CBOR object.
Implementation
@override
CborObject toCbor() {
return CborListValue.fixedLength([
type.toCbor(),
...poolParams.toCbor().cast<CborListValue<CborObject>>().value,
]);
}
Converts the object to a CBOR object.
@override
CborObject toCbor() {
return CborListValue.fixedLength([
type.toCbor(),
...poolParams.toCbor().cast<CborListValue<CborObject>>().value,
]);
}