AuthenticationResponse class
Provides a response to an authentication attempt.
Constructors
- AuthenticationResponse({required bool success, String? key, int? keyId, UserInfo? userInfo, AuthenticationFailReason? failReason})
-
AuthenticationResponse.fromJson(Map<
String, dynamic> jsonSerialization, SerializationManager serializationManager) -
factory
Properties
- failReason ↔ AuthenticationFailReason?
-
Reason for a failed authentication attempt, only set if the authentication
failed.
getter/setter pair
- hashCode → int
-
The hash code for this object.
no setterinherited
- key ↔ String?
-
The key associated with a successful authentication.
getter/setter pair
- keyId ↔ int?
-
The id of the key associated with a successful authentication.
getter/setter pair
- runtimeType → Type
-
A representation of the runtime type of the object.
no setterinherited
- success ↔ bool
-
True if the authentication was successful.
getter/setter pair
- userInfo ↔ UserInfo?
-
The UserInfo of the authenticated user, only set if the authentication
was successful.
getter/setter pair
Methods
-
allToJson(
) → Map< String, dynamic> - Returns a serialized JSON structure of the entity which also includes fields used by the database.
-
noSuchMethod(
Invocation invocation) → dynamic -
Invoked when a nonexistent method or property is accessed.
inherited
-
toJson(
) → Map< String, dynamic> - Returns a serialized JSON structure of the entity, ready to be sent through the API. This does not include fields that are marked as database only.
-
toString(
) → String -
A string representation of this object.
inherited
Operators
-
operator ==(
Object other) → bool -
The equality operator.
inherited