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