WebResourceResponse constructor

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

Implementation

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