ApplicationPassword class

Constructors

ApplicationPassword({String? uuid, String? appId, String? name, String? password, String? created, String? lastUsed, String? lastIp})
ApplicationPassword.fromJson(String source)
factory
ApplicationPassword.fromMap(Map<String, dynamic> map)
factory

Properties

appId String?
A uuid provided by the application to uniquely identify it. It is recommended to use an UUID v5 with the URL or DNS namespace.
final
created String?
The GMT date the application password was created.
final
hashCode int
The hash code for this object.
no setteroverride
lastIp String?
The IP address the application password was last used by.
final
lastUsed String?
The GMT date the application password was last used.
final
name String?
The name of the application password.
final
password String?
The generated password. Only available after adding an application.
final
runtimeType Type
A representation of the runtime type of the object.
no setterinherited
uuid String?
The unique identifier for the application password.
final

Methods

copyWith({String? uuid, String? appId, String? name, String? password, String? created, String? lastUsed, String? lastIp}) ApplicationPassword
noSuchMethod(Invocation invocation) → dynamic
Invoked when a nonexistent method or property is accessed.
inherited
toJson() String
toMap() Map<String, dynamic>
toString() String
A string representation of this object.
override

Operators

operator ==(Object o) bool
The equality operator.
override