TickerWeatherIcon constructor

const TickerWeatherIcon({
  1. required ClockModel clockModel,
  2. required double height,
  3. Key? key,
})

Constructor for the WeatherIcon in the ticker Takes height to define a fixed square size

Implementation

const TickerWeatherIcon({
  required this.clockModel,
  required this.height,
  Key? key,
}) : super(key: key);