RequestTransactionPayloadReq constructor
RequestTransactionPayloadReq(
{ - String? receiver,
- double? tokenCount,
- int? type,
})
Implementation
factory RequestTransactionPayloadReq({
$core.String? receiver,
$core.double? tokenCount,
$core.String? comment,
$core.int? type,
}) {
final _result = create();
if (receiver != null) {
_result.receiver = receiver;
}
if (tokenCount != null) {
_result.tokenCount = tokenCount;
}
if (comment != null) {
_result.comment = comment;
}
if (type != null) {
_result.type = type;
}
return _result;
}