HomeV2 constructor

const HomeV2({
  1. int? id,
  2. String? name,
  3. WeatherConditionV2? weatherCondition,
  4. double? weatherTempF,
  5. WeatherTimePeriodV2? weatherTimePeriod,
  6. DeviceAddressV2? address,
  7. List<DeviceV2>? devices,
})

Implementation

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