operator + method
Implementation
AiUsage operator +(AiUsage other) => AiUsage(
inputTokens: inputTokens + other.inputTokens,
outputTokens: outputTokens + other.outputTokens,
cachedInputTokens: cachedInputTokens + other.cachedInputTokens,
requestMs: requestMs + other.requestMs,
);