SpaceClockScene constructor

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

SpaceClockScene

Constructs the space_clock, give it a ClockModel

Implementation

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