Passwd class

Dart implemenation of posix passwd structure

Constructors

Passwd({required String username, required String password, required int uid, required int gid, required String userInfo, required String homePathTo, required String shellPathTo})

Properties

gid int
Group ID.
getter/setter pair
hashCode int
The hash code for this object.
no setterinherited
homePathTo String
Home directory - pw_dir in posix
getter/setter pair
password String
Hashed passphrase, if shadow database not in use (see shadow.h).
getter/setter pair
runtimeType Type
A representation of the runtime type of the object.
no setterinherited
shellPathTo String
Shell program - pw_shell in posix
getter/setter pair
uid int
User ID.
getter/setter pair
userInfo String
Comma delimited set of fields about the user (name, phone, ...) = pw_gecos in posix. May be empty.
getter/setter pair
username String
getter/setter pair

Methods

noSuchMethod(Invocation invocation) → dynamic
Invoked when a nonexistent method or property is accessed.
inherited
toString() String
A string representation of this object.
override

Operators

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