DigitalClock constructor

DigitalClock({
  1. bool? is24HourTimeFormat,
  2. bool? showSecondsDigit,
  3. Widget? colon,
  4. BoxDecoration? colonDecoration,
  5. double? areaWidth,
  6. double? areaHeight,
  7. BoxDecoration? areaDecoration,
  8. AlignmentDirectional? areaAligment,
  9. BoxDecoration? hourDigitDecoration,
  10. BoxDecoration? minuteDigitDecoration,
  11. BoxDecoration? secondDigitDecoration,
  12. Curve? digitAnimationStyle,
  13. TextStyle? hourMinuteDigitTextStyle,
  14. TextStyle? secondDigitTextStyle,
  15. TextStyle? amPmDigitTextStyle,
})

Implementation

DigitalClock({
  this.is24HourTimeFormat,
  this.showSecondsDigit,
  this.colon,
  this.colonDecoration,
  this.areaWidth,
  this.areaHeight,
  this.areaDecoration,
  this.areaAligment,
  this.hourDigitDecoration,
  this.minuteDigitDecoration,
  this.secondDigitDecoration,
  this.digitAnimationStyle,
  this.hourMinuteDigitTextStyle,
  this.secondDigitTextStyle,
  this.amPmDigitTextStyle,
});