AuthenticationResponse class abstract

Provides a response to an authentication attempt.

Constructors

AuthenticationResponse({required bool success, String? key, int? keyId, UserInfo? userInfo, AuthenticationFailReason? failReason})
factory
AuthenticationResponse.fromJson(Map<String, dynamic> jsonSerialization)
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

copyWith({bool? success, String? key, int? keyId, UserInfo? userInfo, AuthenticationFailReason? failReason}) AuthenticationResponse
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 model which also includes fields used by the database.
toJsonForProtocol() Map<String, dynamic>
Returns a JSON structure of the model, optimized for Protocol communication.
toString() String
A string representation of this object.
override

Operators

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