copyWith method
ConversationChargingCommonModel
copyWith({
- bool? devDiscount,
- dynamic tier,
- LLMCategoryUsage? llmUsage,
- 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);
}