HomeDTO constructor
- int? id,
- String? name,
- WeatherConditionDTO? weatherCondition,
- double? weatherTempF,
- WeatherTimePeriodDTO? weatherTimePeriod,
- AddressDTO? address,
- List<
DeviceDTO> ? devices, - List<
HomeUserDTO> ? users,
Implementation
const HomeDTO({
this.id,
this.name,
this.weatherCondition,
this.weatherTempF,
this.weatherTimePeriod,
this.address,
this.devices,
this.users,
});