HttpRequest constructor

HttpRequest({
  1. String? method,
  2. String? url,
  3. Object? content,
  4. Map<String, String>? headers,
  5. String? responseType,
  6. AbortSignal? abortSignal,
  7. int? timeout,
  8. bool? withCredentials,
})

Implementation

HttpRequest(
    {this.method,
    this.url,
    this.content,
    this.headers,
    this.responseType,
    this.abortSignal,
    this.timeout,
    this.withCredentials});