copyWith method

LLMTokensCategoryUsage copyWith({
  1. int? tokens,
  2. double? price,
})

Implementation

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