Lodging constructor

Lodging({
  1. ChargeTypeEnum? chargeType,
  2. String? checkInDate,
  3. String? checkOutDate,
  4. List<String>? extraCharges,
  5. String? folioID,
  6. double? lengthOfStay,
  7. double? roomRate,
  8. SpecialProgramEnum? specialProgram,
  9. double? totalAuthAmount,
})

Implementation

Lodging({
  this.chargeType, this.checkInDate, this.checkOutDate, this.extraCharges,
  this.folioID, this.lengthOfStay, this.roomRate, this.specialProgram,
  this.totalAuthAmount
});