copyWith method
Implementation
LLMUsageCalculatorPublicRequestModel copyWith(
{int? promptLength, int? numberOfPages, bool? ragEnabled}) {
return LLMUsageCalculatorPublicRequestModel(
promptLength: promptLength ?? this.promptLength,
numberOfPages: numberOfPages ?? this.numberOfPages,
ragEnabled: ragEnabled ?? this.ragEnabled);
}