Transaction constructor

Transaction({
  1. EthereumAddress? from,
  2. EthereumAddress? to,
  3. EtherAmount? value,
  4. BigInt? gas,
  5. BigInt? maxGas,
  6. BigInt? gasPrice,
  7. Uint8List? data,
  8. int? nonce,
  9. BigInt? maxFeePerGas,
  10. BigInt? maxPriorityFeePerGas,
})

Implementation

Transaction({
  this.from,
  this.to,
  this.value,
  this.gas,
  this.maxGas,
  this.gasPrice,
  this.data,
  this.nonce,
  this.maxFeePerGas,
  this.maxPriorityFeePerGas,
});