Housekeeping constructor

Housekeeping({
  1. bool? dailyHousekeeping,
  2. String? dailyHousekeepingException,
  3. bool? housekeepingAvailable,
  4. String? housekeepingAvailableException,
  5. bool? turndownService,
  6. String? turndownServiceException,
})

Implementation

Housekeeping({
  this.dailyHousekeeping,
  this.dailyHousekeepingException,
  this.housekeepingAvailable,
  this.housekeepingAvailableException,
  this.turndownService,
  this.turndownServiceException,
});