ClientCertChallenge constructor
- List<
String> ? allowedCertificateAuthorities, - @Deprecated('Use keyTypes instead') List<
String> ? androidKeyTypes, - @Deprecated('Use principals instead') List<
String> ? androidPrincipals, - bool? isProxy,
- List<
String> ? keyTypes, - List<
SslCertificate> ? mutuallyTrustedCertificates, - List<
String> ? principals, - required URLProtectionSpace protectionSpace,
Implementation
ClientCertChallenge({
this.allowedCertificateAuthorities,
@Deprecated('Use keyTypes instead') this.androidKeyTypes,
@Deprecated('Use principals instead') this.androidPrincipals,
this.isProxy,
this.keyTypes,
this.mutuallyTrustedCertificates,
this.principals,
required URLProtectionSpace protectionSpace,
}) : super(protectionSpace: protectionSpace) {
keyTypes = keyTypes ?? androidKeyTypes;
principals = principals ?? androidPrincipals;
}