PlaceCommodity constructor

PlaceCommodity({
  1. bool wifi = true,
  2. bool parking = true,
  3. bool roomService = false,
  4. bool audioEquipment = true,
  5. bool musicalInstruments = false,
  6. bool acousticConditioning = false,
  7. bool childAllowance = false,
  8. bool smokingAllowance = false,
  9. bool smokeDetector = false,
  10. bool publicBathroom = true,
  11. bool privateBathroom = false,
  12. bool sharedPlace = true,
})

Implementation

PlaceCommodity({
    this.wifi = true,
    this.parking = true,
    this.roomService = false,
    this.audioEquipment = true,
    this.musicalInstruments = false,
    this.acousticConditioning = false,
    this.childAllowance = false,
    this.smokingAllowance = false,
    this.smokeDetector = false,
    this.publicBathroom = true,
    this.privateBathroom = false,
    this.sharedPlace = true
});