Counters constructor

Counters({
  1. String? failedObjectCount,
  2. String? succeededObjectCount,
  3. String? totalObjectCount,
})

Implementation

Counters({
  this.failedObjectCount,
  this.succeededObjectCount,
  this.totalObjectCount,
});