WebLogin class

Represents a web login instance.

This class holds the details of a web login, including the ID, last login time, operating system name, unique QR token, and web browser name.

Parameters: id - The unique identifier of the web login. lastLoginTime - The last login time. osName - The name of the operating system used for the login. qrUniqeToken - A unique token associated with the QR code used for the login. webBrowserName - The name of the web browser used for the login.

Constructors

WebLogin({required int id, required String lastLoginTime, required String osName, required String qrUniqeToken, required String webBrowserName})
Initializes a new instance of the WebLogin class.
WebLogin.fromJson(Map<String, dynamic> json)
Creates a WebLogin instance from a JSON map.
factory

Properties

hashCode int
The hash code for this object.
no setterinherited
id int
The unique identifier of the web login.
getter/setter pair
lastLoginTime String
The last login time.
getter/setter pair
osName String
The name of the operating system used for the login.
getter/setter pair
qrUniqeToken String
A unique token associated with the QR code used for the login.
getter/setter pair
runtimeType Type
A representation of the runtime type of the object.
no setterinherited
webBrowserName String
The name of the web browser used for the login.
getter/setter pair

Methods

noSuchMethod(Invocation invocation) → dynamic
Invoked when a nonexistent method or property is accessed.
inherited
toJson() Map<String, dynamic>
Converts an instance of WebLogin to a JSON map.
toString() String
A string representation of this object.
inherited

Operators

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