HomePlaceModel constructor

HomePlaceModel({
  1. String? id,
  2. String? name,
  3. int? proId,
  4. int? placeId,
  5. String? description,
  6. String? currency,
  7. int? minimumDaysRequired,
  8. int? minimumHoursRequired,
  9. int? numberOfBeds,
  10. int? numberOfRooms,
  11. double? priceByHours,
  12. double? priceByNight,
  13. double? priceByWeek,
  14. double? priceByMonth,
  15. String? phone,
  16. String? label,
  17. int? lat,
  18. int? lng,
  19. String? countryCode,
  20. String? utcModifier,
  21. String? street1,
  22. String? street2,
  23. String? state,
  24. String? city,
  25. String? country,
  26. String? zip,
  27. String? informations,
  28. String? pictureUrl,
})

Implementation

HomePlaceModel(
    {this.id,
    this.name,
    this.proId,
    this.placeId,
    this.description,
    this.currency,
    this.minimumDaysRequired,
    this.minimumHoursRequired,
    this.numberOfBeds,
    this.numberOfRooms,
    this.priceByHours,
    this.priceByNight,
    this.priceByWeek,
    this.priceByMonth,
    this.phone,
    this.label,
    this.lat,
    this.lng,
    this.countryCode,
    this.utcModifier,
    this.street1,
    this.street2,
    this.state,
    this.city,
    this.country,
    this.zip,
    this.informations,
    this.pictureUrl});