HomeDTO constructor

const HomeDTO({
  1. int? id,
  2. String? name,
  3. WeatherConditionDTO? weatherCondition,
  4. double? weatherTempF,
  5. WeatherTimePeriodDTO? weatherTimePeriod,
  6. AddressDTO? address,
  7. List<DeviceDTO>? devices,
  8. List<HomeUserDTO>? users,
})

Implementation

const HomeDTO({
  this.id,
  this.name,
  this.weatherCondition,
  this.weatherTempF,
  this.weatherTimePeriod,
  this.address,
  this.devices,
  this.users,
});