HttpClientConfig constructor

const HttpClientConfig({
  1. bool withTrustedRoots = true,
  2. List<({List<int> certificate, String? password})>? trustedCertificates,
})

Creates a new HttpClientConfig object.

Implementation

const HttpClientConfig({
  this.withTrustedRoots = true,
  this.trustedCertificates,
});