sendTodayWeather method

Future<void> sendTodayWeather(
  1. TodayWeatherBean todayWeatherInfo
)

Implementation

Future<void> sendTodayWeather(TodayWeatherBean todayWeatherInfo) async {
  String jsonStr = todayWeatherBeanToJson(todayWeatherInfo);
  return await mConnMethodChannel.invokeMethod(
      'sendTodayWeather', <String, String>{"todayWeatherInfo": jsonStr});
}