TronRequestTriggerConstantContract constructor

TronRequestTriggerConstantContract({
  1. required TronAddress ownerAddress,
  2. TronAddress? contractAddress,
  3. String? functionSelector,
  4. String? parameter,
  5. String? data,
  6. BigInt? callValue,
  7. BigInt? callTokenValue,
  8. BigInt? tokenId,
  9. AbiFunctionFragment? fragment,
  10. bool visible = true,
})

Implementation

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