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,
  17. bool showTransfer = false,
  18. bool showKeypad = false,
  19. String? txtTransfer,
  20. String? txtKeypad,
})

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,
  this.showTransfer = false,
  this.showKeypad = false,
  this.txtTransfer,
  this.txtKeypad,
}) : super(key: key);