WebResourceResponse constructor

WebResourceResponse({
  1. String? contentEncoding = "utf-8",
  2. String? contentType = "",
  3. Uint8List? data,
  4. Map<String, String>? headers,
  5. String? reasonPhrase,
  6. int? statusCode,
})

Implementation

WebResourceResponse(
    {this.contentEncoding = "utf-8",
    this.contentType = "",
    this.data,
    this.headers,
    this.reasonPhrase,
    this.statusCode});