CallParameters constructor

CallParameters({
  1. required String? data,
  2. required String? to,
  3. String? account,
  4. List<Map<String, dynamic>>? accessList,
  5. BigInt? gas,
  6. BigInt? gasPrice,
  7. BigInt? maxFeePerGas,
  8. BigInt? maxPriorityFeePerGas,
  9. int? nonce,
  10. BigInt? value,
  11. int? blockNumber,
  12. BlockTag? blockTag,
  13. int? chainId,
})

Implementation

CallParameters({
  required this.data,
  required this.to,
  this.account,
  this.accessList,
  this.gas,
  this.gasPrice,
  this.maxFeePerGas,
  this.maxPriorityFeePerGas,
  this.nonce,
  this.value,
  this.blockNumber,
  this.blockTag,
  this.chainId,
});