weatherChangeEveStm property

Stream<WeatherChangeBean> weatherChangeEveStm

Implementation

Stream<WeatherChangeBean> get weatherChangeEveStm {
  return const EventChannel(ChannelNames.eventWeatherChange)
      .receiveBroadcastStream()
      .map((dynamic event) {
    return weatherChangeBeanFromJson(event);
  });
}