operator + method

dynamic operator +(
  1. ChatUsage other
)

Implementation

operator +(ChatUsage other) => ChatUsage(
  inputTokens: inputTokens + other.inputTokens,
  outputTokens: outputTokens + other.outputTokens,
);