getAllWeatherConditions static method

LocationForecast getAllWeatherConditions()

Retrieve all weather conditions parsed from all available resources.

Returns

Throws:

  • An exception if it fails.

Implementation

static LocationForecast getAllWeatherConditions() {
  final OperationResult resultString = staticMethod(
    'Debug',
    'getAllWeatherConditions',
  );

  return LocationForecast.fromJson(resultString['result']);
}