copyWith method

ConversationChargingCommonModel copyWith({
  1. bool? devDiscount,
  2. dynamic tier,
  3. LLMCategoryUsage? llmUsage,
  4. dynamic llmPrice,
})

Implementation

ConversationChargingCommonModel copyWith(
    {bool? devDiscount,
    dynamic tier,
    LLMCategoryUsage? llmUsage,
    dynamic llmPrice}) {
  return ConversationChargingCommonModel(
      devDiscount: devDiscount ?? this.devDiscount,
      tier: tier ?? this.tier,
      llmUsage: llmUsage ?? this.llmUsage,
      llmPrice: llmPrice ?? this.llmPrice);
}