CompletionStats constructor

CompletionStats({
  1. int successfulCount = 0,
  2. int failedCount = 0,
  3. int incompleteCount = 0,
  4. int successfulForecastPointCount = 0,
})

Implementation

CompletionStats({
  this.successfulCount = 0,
  this.failedCount = 0,
  this.incompleteCount = 0,
  this.successfulForecastPointCount = 0,
}) : super(fullyQualifiedName);