FeeHistory constructor

const FeeHistory({
  1. required List<BigInt> baseFeePerGas,
  2. required List<double> gasUsedRatio,
  3. required int oldestBlock,
  4. required List<List<BigInt>> reward,
})

Implementation

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