getWeatherMinuteLy method
Implementation
Future<WeatherMinutelyResp?> getWeatherMinuteLy(String location) async {
Map? value = await _methodChannel.invokeMapMethod(
MethodConstants.GetWeatherMinuteLy, location);
return value == null ? null : WeatherMinutelyResp.fromMap(value);
}