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