toJson method

Map<String, dynamic> toJson()

Converts an instance of WebLogin to a JSON map.

This method is used to serialize WebLogin instances into a map structure that can easily be converted to JSON. This is useful for storing the instance in a database or sending it over a network.

Returns: A map representing the serialized form of the WebLogin instance.

Implementation

Map<String, dynamic> toJson() => {
      "id": id,
      "lastLoginTime": lastLoginTime,
      "osName": osName,
      "qrUniqeToken": qrUniqeToken,
      "webBrowserName": webBrowserName,
    };