PosixAccount constructor

PosixAccount({
  1. String? accountId,
  2. String? gecos,
  3. String? gid,
  4. String? homeDirectory,
  5. String? name,
  6. String? operatingSystemType,
  7. bool? primary,
  8. String? shell,
  9. String? systemId,
  10. String? uid,
  11. String? username,
})

Implementation

PosixAccount({
  this.accountId,
  this.gecos,
  this.gid,
  this.homeDirectory,
  this.name,
  this.operatingSystemType,
  this.primary,
  this.shell,
  this.systemId,
  this.uid,
  this.username,
});