ClockScaffolding constructor

const ClockScaffolding({
  1. required ClockModel model,
  2. Key? key,
  3. bool showMoon = false,
  4. bool showEarth = true,
  5. bool showSun = false,
})

Construct a clock scaffolding given a model

Implementation

const ClockScaffolding({
  required this.model,
  Key? key,
  this.showMoon = false,
  this.showEarth = true,
  this.showSun = false,
}) : super(key: key);