getWeatherData method

Future<Weather> getWeatherData(
  1. String city
)

Implementation

Future<Weather> getWeatherData(String city) async{
  return await weatherRepositories.getWeather(city);
}