DownloadStartRequest constructor

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

Implementation

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