UserType constructor

UserType({
  1. List<AttributeType>? attributes,
  2. bool? enabled,
  3. List<MFAOptionType>? mFAOptions,
  4. DateTime? userCreateDate,
  5. DateTime? userLastModifiedDate,
  6. UserStatusType? userStatus,
  7. String? username,
})

Implementation

UserType({
  this.attributes,
  this.enabled,
  this.mFAOptions,
  this.userCreateDate,
  this.userLastModifiedDate,
  this.userStatus,
  this.username,
});