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