IOSURLResponse constructor

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

Implementation

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