USystemDownloadStatus constructor

const USystemDownloadStatus({
  1. required String id,
  2. required String state,
  3. required int received,
  4. required int total,
  5. String? path,
  6. String? error,
})

Implementation

const USystemDownloadStatus({
  required this.id,
  required this.state,
  required this.received,
  required this.total,
  this.path,
  this.error,
});