Chamber constructor

Chamber({
  1. String id = "",
  2. String name = "",
  3. String description = "",
  4. String ownerId = "",
  5. String ownerName = "",
  6. OwnerType ownerType = OwnerType.profile,
  7. String href = "",
  8. String imgUrl = "",
  9. bool public = true,
  10. Position? position,
  11. bool isModifiable = true,
  12. List<ChamberPreset>? chamberPresets,
})

Implementation

Chamber({
  this.id = "",
  this.name = "",
  this.description = "",
  this.ownerId = "",
  this.ownerName = "",
  this.ownerType = OwnerType.profile,
  this.href = "",
  this.imgUrl = "",
  this.public = true,
  this.position,
  this.isModifiable = true,
  this.chamberPresets,
});