toCborValue method
Implementation
@override
CborValue toCborValue() {
final Map map = {};
map[GsSignatureKeys.uuid.index] = CborBytes(uuid, tags: [RegistryType.UUID.tag]);
if (origin != null) {
map[GsSignatureKeys.origin.index] = origin;
}
map[GsSignatureKeys.signature.index] = signature;
return CborValue(map);
}