User constructor

User({
  1. bool? active,
  2. String? arn,
  3. String? customPermissionsName,
  4. String? email,
  5. IdentityType? identityType,
  6. String? principalId,
  7. UserRole? role,
  8. String? userName,
})

Implementation

User({
  this.active,
  this.arn,
  this.customPermissionsName,
  this.email,
  this.identityType,
  this.principalId,
  this.role,
  this.userName,
});