TimerProgress constructor

const TimerProgress({
  1. Key? key,
  2. required Rx<int> timerCount,
  3. required int max,
  4. bool isCustomTimer = false,
  5. Color? progressColor,
  6. Color? backgroundColor,
  7. Color? progressBackgroundColor,
  8. Color? timerTextColor,
  9. double? height,
  10. double? width,
})

Implementation

const TimerProgress(
    {super.key,
    required this.timerCount,
    required this.max,
    this.isCustomTimer = false,
    this.progressColor,
    this.backgroundColor,
    this.progressBackgroundColor,
    this.timerTextColor,
    this.height,
    this.width});