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;
}