TriggerSmartContract constructor
TriggerSmartContract({})
Implementation
factory TriggerSmartContract({
$core.String? ownerAddress,
$core.String? contractAddress,
$fixnum.Int64? callValue,
$core.List<$core.int>? data,
$fixnum.Int64? callTokenValue,
$fixnum.Int64? tokenId,
}) {
final result = create();
if (ownerAddress != null) result.ownerAddress = ownerAddress;
if (contractAddress != null) result.contractAddress = contractAddress;
if (callValue != null) result.callValue = callValue;
if (data != null) result.data = data;
if (callTokenValue != null) result.callTokenValue = callTokenValue;
if (tokenId != null) result.tokenId = tokenId;
return result;
}