Transaction_ERC721Transfer constructor
Implementation
factory Transaction_ERC721Transfer({
$core.String? from,
$core.String? to,
$core.List<$core.int>? tokenId,
}) {
final $result = create();
if (from != null) {
$result.from = from;
}
if (to != null) {
$result.to = to;
}
if (tokenId != null) {
$result.tokenId = tokenId;
}
return $result;
}