copyWith method

LLMUsageOutput copyWith({
  1. Map<String, dynamic>? modelUsage,
})

Implementation

LLMUsageOutput copyWith({Map<String, dynamic>? modelUsage}) {
  return LLMUsageOutput(modelUsage: modelUsage ?? this.modelUsage);
}