ProgressState constructor

const ProgressState({
  1. int messagesTotal = 0,
  2. int messagesDropped = 0,
  3. int messagesProcessed = 0,
  4. int conversationsTotal = 0,
  5. int conversationsDropped = 0,
  6. int conversationsProcessed = 0,
  7. int passesComplete = 0,
  8. bool complete = false,
})

Create a new instance

Implementation

const ProgressState(
    {this.messagesTotal = 0,
    this.messagesDropped = 0,
    this.messagesProcessed = 0,
    this.conversationsTotal = 0,
    this.conversationsDropped = 0,
    this.conversationsProcessed = 0,
    this.passesComplete = 0,
    this.complete = false});