CodexTotals constructor

CodexTotals({
  1. int inputTokens = 0,
  2. int outputTokens = 0,
  3. int totalTokens = 0,
  4. double secondsRunning = 0,
})

Creates a totals counter.

Implementation

CodexTotals({
  this.inputTokens = 0,
  this.outputTokens = 0,
  this.totalTokens = 0,
  this.secondsRunning = 0,
});