AppCircularCountDownTimer constructor

const AppCircularCountDownTimer({
  1. required int duration,
  2. required dynamic onComplete(),
  3. required CountDownController controller,
  4. Key? key,
})

Idetntify the required parameters.

Implementation

const AppCircularCountDownTimer({
  required this.duration,
  required this.onComplete,
  required this.controller,
  super.key,
});