HttpProfileResponseData constructor
HttpProfileResponseData({ - DateTime? startTime,
- DateTime? endTime,
- String? compressionState,
- Map<String, dynamic>? connectionInfo,
- int? contentLength,
- List<String>? cookies,
- bool? isRedirect,
- bool? persistentConnection,
- String? reasonPhrase,
- required List<Map<String, dynamic>> redirects,
- int? statusCode,
- 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,
});