URLProtectionSpace constructor

URLProtectionSpace({
  1. required String host,
  2. String? protocol,
  3. String? realm,
  4. int? port,
  5. SslCertificate? sslCertificate,
  6. SslError? sslError,
  7. IOSNSURLProtectionSpaceAuthenticationMethod? iosAuthenticationMethod,
  8. List<X509Certificate>? iosDistinguishedNames,
  9. bool? iosReceivesCredentialSecurely,
  10. bool? iosIsProxy,
  11. IOSNSURLProtectionSpaceProxyType? iosProxyType,
})

Implementation

URLProtectionSpace(
    {required this.host,
    this.protocol,
    this.realm,
    this.port,
    this.sslCertificate,
    this.sslError,
    this.iosAuthenticationMethod,
    this.iosDistinguishedNames,
    this.iosReceivesCredentialSecurely,
    this.iosIsProxy,
    this.iosProxyType});