RequestException constructor

RequestException({
  1. String? cause,
  2. String? url,
  3. dynamic data,
  4. dynamic queryParams,
  5. dynamic headers,
  6. String? contentType,
})

Implementation

RequestException(
    {this.cause,
    this.url,
    this.data,
    this.queryParams,
    this.headers,
    this.contentType});