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