ClockScaffolding constructor
const
ClockScaffolding({
- required ClockModel model,
- Key? key,
- bool showMoon = false,
- bool showEarth = true,
- 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);