ScrapeResult constructor

ScrapeResult({
  1. required List<String> data,
  2. required String url,
  3. required DateTime timestamp,
  4. required ScrapeType type,
  5. String? error,
  6. required bool isSuccess,
})

Implementation

ScrapeResult({
  required this.data,
  required this.url,
  required this.timestamp,
  required this.type,
  this.error,
  required this.isSuccess,
});