HttpProfileResponseData constructor

HttpProfileResponseData({
  1. DateTime? startTime,
  2. DateTime? endTime,
  3. Map<String, dynamic>? headers,
  4. String? compressionState,
  5. Map<String, dynamic>? connectionInfo,
  6. int? contentLength,
  7. List<String>? cookies,
  8. bool? isRedirect,
  9. bool? persistentConnection,
  10. String? reasonPhrase,
  11. required List<Map<String, dynamic>> redirects,
  12. int? statusCode,
  13. String? error,
})

Implementation

HttpProfileResponseData({
  this.startTime,
  this.endTime,
  this.headers,
  this.compressionState,
  this.connectionInfo,
  this.contentLength,
  this.cookies,
  this.isRedirect,
  this.persistentConnection,
  this.reasonPhrase,
  required this.redirects,
  this.statusCode,
  this.error,
});