CallScreen constructor
const
CallScreen({
- Key? key,
- required Color bgColor,
- required PitelCallStateEnum callState,
- required dynamic onCallState(),
- String? txtMute,
- String? txtUnMute,
- String? txtSpeaker,
- String? txtOutgoing,
- String? txtIncoming,
- TextStyle? textStyle,
- TextStyle? titleTextStyle,
- TextStyle? timerTextStyle,
- TextStyle? directionTextStyle,
- String? txtTimer,
- String? txtWaiting,
Implementation
const CallScreen({
Key? key,
required this.bgColor,
required this.callState,
required this.onCallState,
this.txtMute,
this.txtUnMute,
this.txtSpeaker,
this.txtOutgoing,
this.txtIncoming,
this.textStyle,
this.titleTextStyle,
this.timerTextStyle,
this.directionTextStyle,
this.txtTimer,
this.txtWaiting,
}) : super(key: key);