CallTimer constructor

const CallTimer({
  1. Key? key,
  2. TextStyle? timerTextStyle,
  3. required bool isStartTimer,
  4. required String txtTimer,
  5. required String txtWaiting,
})

Implementation

const CallTimer({
  Key? key,
  this.timerTextStyle,
  required this.isStartTimer,
  required this.txtTimer,
  required this.txtWaiting,
}) : super(key: key);