TransferMessage constructor
Implementation
factory TransferMessage({
$core.String? from,
$core.String? to,
$fixnum.Int64? amount,
}) {
final $result = create();
if (from != null) {
$result.from = from;
}
if (to != null) {
$result.to = to;
}
if (amount != null) {
$result.amount = amount;
}
return $result;
}