IOSURLResponse constructor

IOSURLResponse({
  1. required int expectedContentLength,
  2. Map<String, String>? headers,
  3. String? mimeType,
  4. int? statusCode,
  5. String? suggestedFilename,
  6. String? textEncodingName,
  7. Uri? url,
})

Implementation

IOSURLResponse(
    {required this.expectedContentLength,
    this.headers,
    this.mimeType,
    this.statusCode,
    this.suggestedFilename,
    this.textEncodingName,
    this.url});