NsfwScanProgress constructor

const NsfwScanProgress({
  1. required String scanId,
  2. required int processed,
  3. required int total,
  4. required double percent,
  5. required String status,
  6. String? imagePath,
  7. String? error,
  8. String? mediaType,
})

Implementation

const NsfwScanProgress({
  required this.scanId,
  required this.processed,
  required this.total,
  required this.percent,
  required this.status,
  this.imagePath,
  this.error,
  this.mediaType,
});