TronRequestTriggerSmartContract constructor

TronRequestTriggerSmartContract({
  1. required TronAddress ownerAddress,
  2. required TronAddress contractAddress,
  3. String? functionSelector,
  4. String? parameter,
  5. String? data,
  6. BigInt? callValue,
  7. BigInt? callTokenValue,
  8. BigInt? tokenId,
  9. BigInt? feeLimit,
  10. int? permissionId,
  11. 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,
  bool visible = true,
}) {
  return TronRequestTriggerSmartContract._(
      ownerAddress: ownerAddress,
      contractAddress: contractAddress,
      functionSelector: functionSelector,
      parameter: parameter,
      callTokenValue: callTokenValue,
      callValue: callValue,
      data: data,
      fragment: null,
      tokenId: tokenId,
      visible: visible);
}