Txs constructor
Implementation
factory Txs({
$core.String? to,
$core.String? tokenId,
$core.String? amount,
}) {
final _result = create();
if (to != null) {
_result.to = to;
}
if (tokenId != null) {
_result.tokenId = tokenId;
}
if (amount != null) {
_result.amount = amount;
}
return _result;
}