FeeHistory constructor

const FeeHistory(
  1. List<BigInt> baseFeePerGas,
  2. BigInt oldestBlock,
  3. List<double> gasUsedRatio,
  4. List<List<BigInt>>? reward,
)

The constructor.

Implementation

const FeeHistory(
  this.baseFeePerGas,
  this.oldestBlock,
  this.gasUsedRatio,
  this.reward,
);