WeatherBg constructor

const WeatherBg({
  1. Key? key,
  2. required WeatherType weatherType,
  3. required double width,
  4. required double height,
  5. double colorOpacity = 1,
  6. double cloudOpacity = 1,
})

Implementation

const WeatherBg({
  Key? key,
  required this.weatherType,
  required this.width,
  required this.height,
  this.colorOpacity = 1,
  this.cloudOpacity = 1,
}) : super(key: key);