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