DateTimeAndWeatherTicker constructor

const DateTimeAndWeatherTicker({
  1. required ClockModel clockModel,
  2. double height = 20,
  3. double fontSize = 12,
  4. Key? key,
})

Constructs this ticker widget

Implementation

const DateTimeAndWeatherTicker({
  required this.clockModel,
  this.height = 20,
  this.fontSize = 12,
  Key? key,
}) : super(key: key);