DownloadStartRequest constructor

DownloadStartRequest({
  1. required Uri url,
  2. String? userAgent,
  3. String? contentDisposition,
  4. String? mimeType,
  5. required int contentLength,
  6. String? suggestedFilename,
  7. String? textEncodingName,
})

Implementation

DownloadStartRequest(
    {required this.url,
    this.userAgent,
    this.contentDisposition,
    this.mimeType,
    required this.contentLength,
    this.suggestedFilename,
    this.textEncodingName});