HttpProfileRequestData.buildSuccessfulRequest constructor
Implementation
HttpProfileRequestData.buildSuccessfulRequest({
Map<String, dynamic>? headers,
Map<String, dynamic>? connectionInfo,
int? contentLength,
required List<String> cookies,
bool? followRedirects,
int? maxRedirects,
bool? persistentConnection,
HttpProfileProxyData? proxyDetails,
}) : _headers = headers,
_connectionInfo = connectionInfo,
_contentLength = contentLength,
_cookies = cookies,
_followRedirects = followRedirects,
_maxRedirects = maxRedirects,
_persistentConnection = persistentConnection,
_proxyDetails = proxyDetails,
error = null;