LoginRequest class

Constructors

LoginRequest({String? account, required String args, required String realm})

Properties

account String?
An optional account. If not null, the account should be checked against accounts on the device. If it is a valid account, it should be used to log in the user. This value may be null.
getter/setter pair
args String
Authenticator specific arguments used to log in the user.
getter/setter pair
hashCode int
The hash code for this object.
no setterinherited
realm String
The account realm used to look up accounts.
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) LoginRequest?
Gets a possible LoginRequest instance from a Map value.