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