getWeatherForecastByLatLong static method

Future<NTRepository> getWeatherForecastByLatLong(
  1. String lat,
  2. String lng,
  3. String token
)

Implementation

static Future<NTRepository> getWeatherForecastByLatLong(
    String lat, String lng, String token) async {
  return Repository().getWeatherForecastByLatLong(lat, lng, token);
}