toCbor method
Converts the object to a CBOR object.
Implementation
@override
CborObject toCbor() {
return CborListValue.definite([
CborMapValue.definite({
for (final i in members.entries)
i.key.toCbor(): CborUnsignedValue.u32(i.value),
}),
quorumQhreshold.toCbor()
]);
}