LimitedGroup constructor

LimitedGroup({
  1. String? id,
  2. String? name,
  3. String? shortCode,
  4. String? discriminator,
  5. String? description,
  6. String? iconUrl,
  7. String? bannerUrl,
  8. String? ownerId,
  9. String? rules,
  10. String? iconId,
  11. String? bannerId,
  12. int? memberCount,
  13. List<String>? tags,
  14. DateTime? createdAt,
  15. GroupMemberStatus? membershipStatus,
  16. bool? isSearchable,
  17. List<GroupGallery>? galleries,
})

Returns a new LimitedGroup instance.

Implementation

LimitedGroup({
  this.id,
  this.name,
  this.shortCode,
  this.discriminator,
  this.description,
  this.iconUrl,
  this.bannerUrl,
  this.ownerId,
  this.rules,
  this.iconId,
  this.bannerId,
  this.memberCount,
  this.tags,
  this.createdAt,
  this.membershipStatus,
  this.isSearchable,
  this.galleries,
});