TimerWidget constructor

const TimerWidget({
  1. Key? key,
  2. required Rx<int> timerCount,
  3. required int maximum,
  4. Color? progressColor,
  5. Color? backgroundColor,
  6. Color? progressBackgroundColor,
  7. Color? timerTextColor,
  8. required String title,
  9. String? subtitle,
})

Implementation

const TimerWidget({
  super.key,
  required this.timerCount,
  required this.maximum,
  this.progressColor,
  this.backgroundColor,
  this.progressBackgroundColor,
  this.timerTextColor,
  required this.title,
  this.subtitle,
});