getWeatherMinuteLy method

Future<WeatherMinutelyResp?> getWeatherMinuteLy(
  1. String location
)
inherited

Implementation

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