Crawl constructor

Crawl({
  1. DateTime? completedOn,
  2. String? errorMessage,
  3. String? logGroup,
  4. String? logStream,
  5. DateTime? startedOn,
  6. CrawlState? state,
})

Implementation

Crawl({
  this.completedOn,
  this.errorMessage,
  this.logGroup,
  this.logStream,
  this.startedOn,
  this.state,
});