getAllWeatherConditions static method

  1. @Deprecated('Use allWeatherConditions getter instead')
LocationForecast getAllWeatherConditions()

Retrieve all weather conditions parsed from all available resources.

Returns

Implementation

@Deprecated('Use allWeatherConditions getter instead')
static LocationForecast getAllWeatherConditions() {
  final OperationResult resultString = staticMethod(
    'Debug',
    'getAllWeatherConditions',
  );

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