copyWith method

EvmFeeInformation<T> copyWith({
  1. int? gasLimit,
  2. T? gasPrice,
})

Implementation

EvmFeeInformation<T> copyWith({
  int? gasLimit,
  T? gasPrice,
}) {
  return EvmFeeInformation(
    gasLimit: gasLimit ?? this.gasLimit,
    gasPrice: gasPrice ?? this.gasPrice,
  );
}