chatcallWidget method
Widget
chatcallWidget(
- BuildContext context, {
- required Chat chat,
- required dynamic onClose(),
- required dynamic speaker(
- bool value
- required dynamic videocall(
- bool value
- bool createanswer = false,
Implementation
Widget chatcallWidget(
BuildContext context, {
required Chat chat,
required Function() onClose,
required Function(bool value) speaker,
required Function(bool value) videocall,
bool createanswer = false,
}) {
return widgetChatCall(
context,
chat: chat,
onClose: onClose,
speaker: speaker,
videocall: videocall,
createanswer: createanswer,
);
}