DownloadManagerResponse constructor

DownloadManagerResponse({
  1. required int token,
  2. required bool status,
  3. ErrorIsolate error = ErrorIsolate.noEror,
})

Implementation

DownloadManagerResponse({
  required this.token,
  required this.status,
  this.error = ErrorIsolate.noEror,
});