addUCOTransfer method
Add a UCO transfer to the transaction
to
: Address of the recipient (hexadecimal)amount
: Amount of UCO to transfer
Implementation
Transaction addUCOTransfer(String to, int amount) {
if (!isHex(to)) {
throw const FormatException("'to' must be an hexadecimal string");
}
final newUCOTransfer = data!.ledger!.uco!.transfers
..add(UCOTransfer(to: to, amount: amount));
return copyWith.data!.ledger!.uco!(
transfers: newUCOTransfer,
);
}