Counters constructor

Counters({
  1. int? errored,
  2. int? failed,
  3. int? passed,
  4. int? skipped,
  5. int? stopped,
  6. int? total,
  7. int? warned,
})

Implementation

Counters({
  this.errored,
  this.failed,
  this.passed,
  this.skipped,
  this.stopped,
  this.total,
  this.warned,
});