copyWith method
Implementation
LLMTokensCategoryUsage copyWith({int? tokens, double? price}) {
return LLMTokensCategoryUsage(
tokens: tokens ?? this.tokens, price: price ?? this.price);
}
LLMTokensCategoryUsage copyWith({int? tokens, double? price}) {
return LLMTokensCategoryUsage(
tokens: tokens ?? this.tokens, price: price ?? this.price);
}