Policies constructor

Policies({
  1. bool? allInclusiveAvailable,
  2. String? allInclusiveAvailableException,
  3. bool? allInclusiveOnly,
  4. String? allInclusiveOnlyException,
  5. TimeOfDay? checkinTime,
  6. String? checkinTimeException,
  7. TimeOfDay? checkoutTime,
  8. String? checkoutTimeException,
  9. bool? kidsStayFree,
  10. String? kidsStayFreeException,
  11. int? maxChildAge,
  12. String? maxChildAgeException,
  13. int? maxKidsStayFreeCount,
  14. String? maxKidsStayFreeCountException,
  15. PaymentOptions? paymentOptions,
  16. bool? smokeFreeProperty,
  17. String? smokeFreePropertyException,
})

Implementation

Policies({
  this.allInclusiveAvailable,
  this.allInclusiveAvailableException,
  this.allInclusiveOnly,
  this.allInclusiveOnlyException,
  this.checkinTime,
  this.checkinTimeException,
  this.checkoutTime,
  this.checkoutTimeException,
  this.kidsStayFree,
  this.kidsStayFreeException,
  this.maxChildAge,
  this.maxChildAgeException,
  this.maxKidsStayFreeCount,
  this.maxKidsStayFreeCountException,
  this.paymentOptions,
  this.smokeFreeProperty,
  this.smokeFreePropertyException,
});