toCbor method
Converts the object to a CBOR object.
Implementation
@override
CborObject toCbor() {
return CborListValue.fixedLength([
vkey.toCbor(),
signature.toCbor(),
CborBytesValue(chainCode),
CborBytesValue(attributes)
]);
}