DownloadsNotificationModel constructor

DownloadsNotificationModel({
  1. String? fileName,
  2. String? fileUri,
  3. int? downloadFileId,
  4. String? status,
  5. String? errorCode,
  6. String? message,
})

Implementation

DownloadsNotificationModel({
  this.fileName,
  this.fileUri,
  this.downloadFileId,
  this.status,
  this.errorCode,
  this.message,
});