chatcallWidget method

Widget chatcallWidget(
  1. BuildContext context, {
  2. required Chat chat,
  3. required dynamic onClose(),
  4. required dynamic speaker(
    1. bool value
    ),
  5. required dynamic videocall(
    1. bool value
    ),
  6. 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,
  );
}