CallRequest constructor

CallRequest({
  1. String? from,
  2. String? to,
  3. Uint8List? data,
  4. BigInt? value,
  5. BigInt? gasLimit,
  6. BigInt? gasPrice,
  7. BigInt? maxFeePerGas,
  8. BigInt? maxPriorityFeePerGas,
})

Implementation

CallRequest({
  this.from,
  this.to,
  this.data,
  this.value,
  this.gasLimit,
  this.gasPrice,
  this.maxFeePerGas,
  this.maxPriorityFeePerGas,
});