CrawlerMetrics constructor

CrawlerMetrics({
  1. String? crawlerName,
  2. double? lastRuntimeSeconds,
  3. double? medianRuntimeSeconds,
  4. bool? stillEstimating,
  5. int? tablesCreated,
  6. int? tablesDeleted,
  7. int? tablesUpdated,
  8. double? timeLeftSeconds,
})

Implementation

CrawlerMetrics({
  this.crawlerName,
  this.lastRuntimeSeconds,
  this.medianRuntimeSeconds,
  this.stillEstimating,
  this.tablesCreated,
  this.tablesDeleted,
  this.tablesUpdated,
  this.timeLeftSeconds,
});