Passwd constructor

Passwd({
  1. required String name,
  2. required String? passwd,
  3. required int uid,
  4. required int gid,
  5. required String? gecos,
  6. required String? dir,
  7. required String? shell,
})

Implementation

Passwd({
  required this.name,
  required this.passwd,
  required this.uid,
  required this.gid,
  required this.gecos,
  required this.dir,
  required this.shell,
});