ClientCertChallenge class

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

Inheritance

Constructors

ClientCertChallenge({required URLProtectionSpace protectionSpace, List<String>? androidPrincipals, List<String>? androidKeyTypes})

Properties

androidKeyTypes List<String>?
Returns the acceptable types of asymmetric keys.
getter/setter pair
androidPrincipals List<String>?
The acceptable certificate issuers for the certificate matching the private key.
getter/setter pair
hashCode int
The hash code for this object.
no setterinherited
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>
inherited
toMap() Map<String, dynamic>
inherited
toString() String
A string representation of this object.
inherited

Operators

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

Static Methods

fromMap(Map<String, dynamic>? map) ClientCertChallenge?
override