isSnowRain static method

bool isSnowRain(
  1. WeatherType weatherType
)

Implementation

static bool isSnowRain(WeatherType weatherType) {
  return isRainy(weatherType) || isSnow(weatherType);
}