EvmGasParams constructor

EvmGasParams({
  1. required int gasLimit,
  2. required double gasPrice,
  3. double? estimatedBaseFee,
  4. Map<EstimatedFeeLevel, EvmGasParamsEIP1559>? estimatedFee,
})

Implementation

EvmGasParams(
    {required this.gasLimit,
    required this.gasPrice,
    this.estimatedBaseFee,
    this.estimatedFee});