TokenUsage constructor

TokenUsage({
  1. int? total,
  2. int? noCache,
  3. int? cacheRead,
  4. int? cacheWrite,
  5. int? text,
  6. int? reasoning,
})

Implementation

TokenUsage({
  this.total,
  this.noCache,
  this.cacheRead,
  this.cacheWrite,
  this.text,
  this.reasoning,
});