ResponseData constructor

ResponseData({
  1. Method? method,
  2. String? url,
  3. int? statusCode,
  4. Map<String, String>? headers,
  5. String? body,
  6. int? contentLength,
  7. bool? isRedirect,
  8. bool? persistentConnection,
})

Implementation

ResponseData({
  this.method,
  this.url,
  this.statusCode,
  this.headers,
  this.body,
  this.contentLength,
  this.isRedirect,
  this.persistentConnection,
});