weatherUnitsString top-level property

Map<WeatherUnits, String> weatherUnitsString
getter/setter pair

A map that associates WeatherUnits with their corresponding string representations.

Implementation

Map<WeatherUnits, String> weatherUnitsString = {
  WeatherUnits.IMPERIAL: 'imperial',
  WeatherUnits.METRIC: 'metric',
  WeatherUnits.STANDARD: 'standard'
};