BatchProcessingStatus constructor

BatchProcessingStatus({
  1. required int processed,
  2. required int total,
  3. int? currentIndex,
  4. String? currentSong,
  5. String? currentArtist,
  6. String? status,
})

Implementation

BatchProcessingStatus({
  required this.processed,
  required this.total,
  this.currentIndex,
  this.currentSong,
  this.currentArtist,
  this.status,
});