LivingArea constructor

LivingArea({
  1. LivingAreaAccessibility? accessibility,
  2. LivingAreaEating? eating,
  3. LivingAreaFeatures? features,
  4. LivingAreaLayout? layout,
  5. LivingAreaSleeping? sleeping,
})

Implementation

LivingArea({
  this.accessibility,
  this.eating,
  this.features,
  this.layout,
  this.sleeping,
});