WeatherRainSnowBg constructor

const WeatherRainSnowBg({
  1. Key? key,
  2. required WeatherType weatherType,
  3. required double viewWidth,
  4. required double viewHeight,
})

Implementation

const WeatherRainSnowBg(
    {Key? key,
    required this.weatherType,
    required this.viewWidth,
    required this.viewHeight})
    : super(key: key);