WeatherItemBg constructor

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

Implementation

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