TronRequestTriggerConstantContract constructor
TronRequestTriggerConstantContract({
- required TronAddress ownerAddress,
- required TronAddress contractAddress,
- String? functionSelector,
- String? parameter,
- String? data,
- BigInt? callValue,
- BigInt? callTokenValue,
- BigInt? tokenId,
- bool visible = true,
Implementation
factory TronRequestTriggerConstantContract({
required TronAddress ownerAddress,
required TronAddress contractAddress,
String? functionSelector,
String? parameter,
String? data,
BigInt? callValue,
BigInt? callTokenValue,
BigInt? tokenId,
bool visible = true,
}) {
return TronRequestTriggerConstantContract._(
ownerAddress: ownerAddress,
contractAddress: contractAddress,
functionSelector: functionSelector,
parameter: parameter,
callTokenValue: callTokenValue,
callValue: callValue,
data: data,
fragment: null,
tokenId: tokenId,
visible: visible);
}