httpClient property

  1. @override
GetHttpClient get 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,
);