httpClient property

  1. @override
GetHttpClient httpClient
override

Implementation

@override
GetHttpClient get httpClient => _httpClient ??= GetHttpClient(
    userAgent: userAgent,
    sendUserAgent: sendUserAgent,
    timeout: timeout,
    followRedirects: followRedirects,
    maxRedirects: maxRedirects,
    maxAuthRetries: maxAuthRetries,
    allowAutoSignedCert: allowAutoSignedCert,
    baseUrl: baseUrl,
    trustedCertificates: trustedCertificates,
    withCredentials: withCredentials,
    findProxy: findProxy);