CallPageWidget constructor

CallPageWidget({
  1. Key? key,
  2. bool receivedBackground = false,
  3. required PitelCallStateEnum callState,
  4. required dynamic onCallState(
    1. PitelCallStateEnum
    ),
  5. required String txtMute,
  6. required String txtUnMute,
  7. required String txtSpeaker,
  8. required String txtOutgoing,
  9. required String txtIncoming,
  10. required String txtTimer,
  11. required String txtWaiting,
  12. TextStyle? textStyle,
  13. TextStyle? titleTextStyle,
  14. TextStyle? timerTextStyle,
  15. TextStyle? directionTextStyle,
})

Implementation

CallPageWidget({
  Key? key,
  this.receivedBackground = false,
  required this.callState,
  required this.onCallState,
  required this.txtMute,
  required this.txtUnMute,
  required this.txtSpeaker,
  required this.txtOutgoing,
  required this.txtIncoming,
  required this.txtTimer,
  required this.txtWaiting,
  this.textStyle,
  this.titleTextStyle,
  this.timerTextStyle,
  this.directionTextStyle,
}) : super(key: key);