GroupGallery constructor

GroupGallery({
  1. String? id,
  2. String? name,
  3. String? description,
  4. bool? membersOnly = false,
  5. List<String>? roleIdsToView,
  6. List<String>? roleIdsToSubmit,
  7. List<String>? roleIdsToAutoApprove,
  8. List<String>? roleIdsToManage,
  9. DateTime? createdAt,
  10. DateTime? updatedAt,
})

Returns a new GroupGallery instance.

Implementation

GroupGallery({
  this.id,
  this.name,
  this.description,
  this.membersOnly = false,
  this.roleIdsToView,
  this.roleIdsToSubmit,
  this.roleIdsToAutoApprove,
  this.roleIdsToManage,
  this.createdAt,
  this.updatedAt,
});