Transaction constructor

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

Implementation

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