WeatherBg constructor

WeatherBg({
  1. Key? key,
  2. required WeatherType weatherType,
  3. required double width,
  4. required double height,
})

Implementation

WeatherBg(
    {Key? key,
    required this.weatherType,
    required this.width,
    required this.height})
    : super(key: key);