dtoToHome function

Home dtoToHome(
  1. HomeDTO home
)

Implementation

Home dtoToHome(HomeDTO home) {
  return Home(
    id: home.id!,
    name: home.name,
    weatherCondition: dtoToWeatherCondition(home.weatherCondition),
    weatherTempF: home.weatherTempF,
    weatherTimePeriod: dtoToWeatherTimePeriod(home.weatherTimePeriod),
    address: dtoToDeviceAddress(home.address),
    devices: home.devices?.map(dtoToDevice).toList() ?? [],
    users: home.users?.toList() ?? [],
  );
}