ListedUser constructor

ListedUser({
  1. required String arn,
  2. String? homeDirectory,
  3. HomeDirectoryType? homeDirectoryType,
  4. String? role,
  5. int? sshPublicKeyCount,
  6. String? userName,
})

Implementation

ListedUser({
  required this.arn,
  this.homeDirectory,
  this.homeDirectoryType,
  this.role,
  this.sshPublicKeyCount,
  this.userName,
});