EIP1559Information constructor

EIP1559Information({
  1. required EtherAmount lastBaseFeePerGas,
  2. required EtherAmount maxPriorityFeePerGas,
  3. required EtherAmount maxFeePerGas,
  4. required BigInt estimatedGas,
})

Implementation

EIP1559Information({
  required this.lastBaseFeePerGas,
  required this.maxPriorityFeePerGas,
  required this.maxFeePerGas,
  required this.estimatedGas,
});