AnalogClock.dark constructor

const AnalogClock.dark({
  1. dynamic datetime,
  2. dynamic showDigitalClock = true,
  3. dynamic showTicks = true,
  4. dynamic showNumbers = true,
  5. dynamic showAllNumbers = false,
  6. dynamic showSecondHand = true,
  7. dynamic useMilitaryTime = true,
  8. dynamic width = double.infinity,
  9. dynamic height = double.infinity,
  10. dynamic decoration = const BoxDecoration(),
  11. Key? key,
})

Implementation

const AnalogClock.dark(
    {datetime,
    showDigitalClock = true,
    showTicks = true,
    showNumbers = true,
    showAllNumbers = false,
    showSecondHand = true,
    useMilitaryTime = true,
    width = double.infinity,
    height = double.infinity,
    decoration = const BoxDecoration(),
    Key? key})
    : this(
          datetime: datetime,
          showDigitalClock: showDigitalClock,
          showTicks: showTicks,
          showNumbers: showNumbers,
          showAllNumbers: showAllNumbers,
          showSecondHand: showSecondHand,
          useMilitaryTime: useMilitaryTime,
          width: width,
          height: height,
          hourHandColor: Colors.white,
          minuteHandColor: Colors.white,
          secondHandColor: Colors.redAccent,
          tickColor: Colors.grey,
          digitalClockColor: Colors.white,
          numberColor: Colors.white,
          decoration: decoration,
          key: key);