InvokeBuilder constructor

InvokeBuilder({
  1. required DeployedContract contract,
  2. required SolFunction function_,
  3. required List args,
  4. EvmAddr? from,
  5. BigInt? value,
  6. BigInt? gasLimit,
  7. BigInt? nonce,
  8. BigInt? maxFeePerGas,
  9. BigInt? maxPriorityFeePerGas,
  10. BigInt? gasPrice,
  11. BigInt? chainId,
})

Implementation

InvokeBuilder({
  required this.contract,
  required this.function_,
  required this.args,
  this.from,
  this.value,
  this.gasLimit,
  this.nonce,
  this.maxFeePerGas,
  this.maxPriorityFeePerGas,
  this.gasPrice,
  this.chainId,
});