getWeatherByPosition static method

Future<WeatherResponse> getWeatherByPosition({
  1. required WeatherPosition weatherPosition,
})

Implementation

static Future<WeatherResponse> getWeatherByPosition({
  required WeatherPosition weatherPosition,
}) async {
  return WeatherResponse.fromJson(await _captureChannel.invokeMethod(
      _Method.getWeatherByPosition, weatherPosition.toMap()));
}