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