AnalyticsProcessingUpdate constructor

AnalyticsProcessingUpdate({
  1. String processingId = '',
  2. int totalRuns = 0,
  3. int totalItems = 0,
  4. int totalPages = 0,
  5. int totalRetries = 0,
  6. int totalFailures = 0,
  7. String startedAt = '',
  8. double elapsedSeconds = 0.0,
  9. Map<String, double> usages = const {},
  10. int runsRemaining = 0,
  11. int itemsRemaining = 0,
  12. double estimatedTimeLeftSecondsRuns = 0.0,
  13. double estimatedTimeLeftSecondsItems = 0.0,
})

Implementation

AnalyticsProcessingUpdate({
    this.processingId = '',
    this.totalRuns = 0,
    this.totalItems = 0,
    this.totalPages = 0,
    this.totalRetries = 0,
    this.totalFailures = 0,
    this.startedAt = '',
    this.elapsedSeconds = 0.0,
    this.usages = const {},
    this.runsRemaining = 0,
    this.itemsRemaining = 0,
    this.estimatedTimeLeftSecondsRuns = 0.0,
    this.estimatedTimeLeftSecondsItems = 0.0,
});