Transaction constructor
Transaction({
- EthereumAddress? from,
- EthereumAddress? to,
- EtherAmount? value,
- BigInt? gas,
- BigInt? maxGas,
- BigInt? gasPrice,
- Uint8List? data,
- int? nonce,
- BigInt? maxFeePerGas,
- BigInt? maxPriorityFeePerGas,
Implementation
Transaction({
this.from,
this.to,
this.value,
this.gas,
this.maxGas,
this.gasPrice,
this.data,
this.nonce,
this.maxFeePerGas,
this.maxPriorityFeePerGas,
});