copyWith method
Implementation
EvmType2GasPrice copyWith({
Amount? maxFeePerGas,
Amount? maxPriorityFeePerGas,
}) {
return EvmType2GasPrice(
maxFeePerGas: maxFeePerGas ?? this.maxFeePerGas,
maxPriorityFeePerGas: maxPriorityFeePerGas ?? this.maxPriorityFeePerGas,
);
}