CountDownTimer constructor

const CountDownTimer({
  1. required int counter,
  2. required VoidCallback onSendAgainTap,
  3. Key? key,
})

Implementation

const CountDownTimer({
  required this.counter,
  required this.onSendAgainTap,
  super.key,
});