Property constructor

Property({
  1. int? builtYear,
  2. String? builtYearException,
  3. int? floorsCount,
  4. String? floorsCountException,
  5. int? lastRenovatedYear,
  6. String? lastRenovatedYearException,
  7. int? roomsCount,
  8. String? roomsCountException,
})

Implementation

Property({
  this.builtYear,
  this.builtYearException,
  this.floorsCount,
  this.floorsCountException,
  this.lastRenovatedYear,
  this.lastRenovatedYearException,
  this.roomsCount,
  this.roomsCountException,
});