WCEthereumTransaction constructor

WCEthereumTransaction({
  1. required String from,
  2. String? to,
  3. String? nonce,
  4. String? gasPrice,
  5. String? maxFeePerGas,
  6. String? maxPriorityFeePerGas,
  7. String? gas,
  8. String? gasLimit,
  9. String? value,
  10. String? data,
})

Implementation

WCEthereumTransaction({
  required this.from,
  this.to,
  this.nonce,
  this.gasPrice,
  this.maxFeePerGas,
  this.maxPriorityFeePerGas,
  this.gas,
  this.gasLimit,
  this.value,
  this.data,
});