CallScreen constructor

const CallScreen({
  1. Key? key,
  2. required Color bgColor,
  3. String? txtMute,
  4. String? txtUnMute,
  5. String? txtSpeaker,
  6. String? txtOutgoing,
  7. String? txtIncoming,
  8. String? txtHoldCall,
  9. String? txtUnHoldCall,
  10. TextStyle? textStyle,
  11. TextStyle? titleTextStyle,
  12. TextStyle? timerTextStyle,
  13. TextStyle? directionTextStyle,
  14. String? txtTimer,
  15. String? txtWaiting,
  16. bool showHoldCall = false,
})

Implementation

const CallScreen({
  Key? key,
  required this.bgColor,
  this.txtMute,
  this.txtUnMute,
  this.txtSpeaker,
  this.txtOutgoing,
  this.txtIncoming,
  this.txtHoldCall,
  this.txtUnHoldCall,
  this.textStyle,
  this.titleTextStyle,
  this.timerTextStyle,
  this.directionTextStyle,
  this.txtTimer,
  this.txtWaiting,
  this.showHoldCall = false,
}) : super(key: key);