Transaction constructor

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

Implementation

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