User constructor

User({
  1. String? arn,
  2. String? directoryUserId,
  3. String? hierarchyGroupId,
  4. String? id,
  5. UserIdentityInfo? identityInfo,
  6. UserPhoneConfig? phoneConfig,
  7. String? routingProfileId,
  8. List<String>? securityProfileIds,
  9. Map<String, String>? tags,
  10. String? username,
})

Implementation

User({
  this.arn,
  this.directoryUserId,
  this.hierarchyGroupId,
  this.id,
  this.identityInfo,
  this.phoneConfig,
  this.routingProfileId,
  this.securityProfileIds,
  this.tags,
  this.username,
});