Properties constructor

Properties({
  1. String? name,
  2. String? slug,
  3. bool? ispravaBuilt,
  4. String? builtBy,
  5. List<Images>? images,
  6. List<String>? featuredIn,
  7. String? address,
  8. Location? location,
  9. double? bedroomCount,
  10. String? maxGuests,
  11. String? currencyCode,
  12. String? currencySymbol,
  13. int? poolsCount,
  14. int? bathsCount,
  15. bool? petsAllowed,
  16. bool? soldOut,
  17. int? price,
  18. int? discountedPrice,
  19. bool? upcoming,
  20. String? status,
  21. String? brand,
  22. int? brandId,
  23. String? cardLayout,
  24. List<PropertyConfigs>? propertyConfigs,
  25. List<NextAvailability>? nextAvailability,
  26. int? tierDiscountPercentage,
  27. String? discountMethod,
})

Implementation

Properties(
    {this.name,
    this.slug,
    this.ispravaBuilt,
    this.builtBy,
    this.images,
    this.featuredIn,
    this.address,
    this.location,
    this.bedroomCount,
    this.maxGuests,
    this.currencyCode,
    this.currencySymbol,
    this.poolsCount,
    this.bathsCount,
    this.petsAllowed,
    this.soldOut,
    this.price,
    this.discountedPrice,
    this.upcoming,
    this.status,
    this.brand,
    this.brandId,
    this.cardLayout,
    this.propertyConfigs,
    this.nextAvailability,
    this.tierDiscountPercentage,
    this.discountMethod});