getWeatherForecastByLatLong static method
Implementation
static Future<Result<dynamic, String>> getWeatherForecastByLatLong(
String lat, String lng, String token) async {
return await Repository().getWeatherForecastByLatLong(lat, lng, token);
}