SpaceClockPainter constructor

SpaceClockPainter({
  1. required bool isDark,
  2. bool showMoon = false,
  3. bool showEarth = true,
  4. bool showSun = false,
})

Constructor for the painter

Implementation

SpaceClockPainter({
  required this.isDark,
  this.showMoon = false,
  this.showEarth = true,
  this.showSun = false,
});