CountdownTimerWidget constructor

const CountdownTimerWidget({
  1. Key? key,
  2. required void resendOtp(
    1. int
    ),
  3. CountdownTimer? countdownTimer,
})

Implementation

const CountdownTimerWidget({
  Key? key,
  required this.resendOtp,
  this.countdownTimer,
}) : super(key: key);