SecureHttpClient.build constructor

SecureHttpClient.build(
  1. List<String> allowedSHAFingerprints, {
  2. BaseClient? customClient,
})

Implementation

factory SecureHttpClient.build(List<String> allowedSHAFingerprints,
    {http.BaseClient? customClient}) {
  return SecureHttpClient._internal(
      allowedSHAFingerprints: allowedSHAFingerprints,
      customClient: customClient);
}