toCbor method
Converts the object to a CBOR object.
Implementation
@override
CborObject toCbor() {
  return CborMapValue.definite({
    for (final i in withdrawals.entries)
      i.key.toCbor(): CborUnsignedValue.u64(i.value)
  });
}Converts the object to a CBOR object.
@override
CborObject toCbor() {
  return CborMapValue.definite({
    for (final i in withdrawals.entries)
      i.key.toCbor(): CborUnsignedValue.u64(i.value)
  });
}