copyWith method

Implementation

LLMUsageCalculatorResponseModel copyWith(
    {List<LLMUsageCalculatorLLMResponseModel>? llmPrices}) {
  return LLMUsageCalculatorResponseModel(
      llmPrices: llmPrices ?? this.llmPrices);
}