USendAgainCountDown constructor

const USendAgainCountDown({
  1. required int counter,
  2. required VoidCallback onSendAgainTap,
  3. required String buttonTitle,
  4. required VoidCallback counterDescription,
  5. Key? key,
})

Implementation

const USendAgainCountDown({
  required this.counter,
  required this.onSendAgainTap,
  required this.buttonTitle,
  required this.counterDescription,
  super.key,
});