SslError class

Class that represents an SSL Error.

Constructors

SslError({@Deprecated('Use code instead') AndroidSslError? androidError, SslErrorType? code, @Deprecated('Use code instead') IOSSslError? iosError, String? message})

Properties

androidError AndroidSslError?
Use code instead.
getter/setter pair
code SslErrorType?
Primary code error associated to the server SSL certificate. It represents the most severe SSL error.
getter/setter pair
hashCode int
The hash code for this object.
no setterinherited
iosError IOSSslError?
Use code instead.
getter/setter pair
message String?
The message associated to the code.
getter/setter pair
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.
toMap() Map<String, dynamic>
Converts instance to a map.
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) SslError?
Gets a possible SslError instance from a Map value.