UserList constructor

UserList({
  1. String? description,
  2. String? displayName,
  3. String? membershipDurationDays,
  4. String? name,
  5. String? status,
  6. UrlRestriction? urlRestriction,
})

Implementation

UserList({
  this.description,
  this.displayName,
  this.membershipDurationDays,
  this.name,
  this.status,
  this.urlRestriction,
});