ClientCertChallenge class

Class that represents the challenge of the PlatformWebViewCreationParams.onReceivedClientCertRequest event. It provides all the information about the challenge.

Inheritance

Constructors

ClientCertChallenge({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})

Properties

allowedCertificateAuthorities List<String>?
The collection contains Base64 encoding of DER encoded distinguished names of certificate authorities allowed by the server.
getter/setter pair
androidKeyTypes List<String>?
Use keyTypes instead.
getter/setter pair
androidPrincipals List<String>?
Use principals instead.
getter/setter pair
hashCode int
The hash code for this object.
no setterinherited
isProxy bool?
If the server that issued this request is an http proxy.
getter/setter pair
keyTypes List<String>?
Returns the acceptable types of asymmetric keys.
getter/setter pair
mutuallyTrustedCertificates List<SslCertificate>?
The collection contains mutually trusted CA certificates.
getter/setter pair
principals List<String>?
The acceptable certificate issuers for the certificate matching the private key.
getter/setter pair
protectionSpace URLProtectionSpace
The protection space requiring authentication.
getter/setter pairinherited
runtimeType Type
A representation of the runtime type of the object.
no setterinherited

Methods

noSuchMethod(Invocation invocation) → dynamic
Invoked when a nonexistent method or property is accessed.
inherited
toJson() Map<String, dynamic>
Converts instance to a map.
override
toMap({EnumMethod? enumMethod}) Map<String, dynamic>
Converts instance to a map.
override
toString() String
A string representation of this object.
override

Operators

operator ==(Object other) bool
The equality operator.
inherited

Static Methods

fromMap(Map<String, dynamic>? map, {EnumMethod? enumMethod}) ClientCertChallenge?
Gets a possible ClientCertChallenge instance from a Map value.
override