UserProfileDetails constructor

UserProfileDetails({
  1. DateTime? creationTime,
  2. String? domainId,
  3. DateTime? lastModifiedTime,
  4. UserProfileStatus? status,
  5. String? userProfileName,
})

Implementation

UserProfileDetails({
  this.creationTime,
  this.domainId,
  this.lastModifiedTime,
  this.status,
  this.userProfileName,
});