DownloadFile constructor

const DownloadFile(
  1. {required int fileId,
  2. required int priority,
  3. required int offset,
  4. required int limit,
  5. required bool synchronous}
)

Downloads a file from the cloud. Download progress and completion of the download will be notified through updateFile updates

Implementation

const DownloadFile({
  required this.fileId,
  required this.priority,
  required this.offset,
  required this.limit,
  required this.synchronous,
});