showDialog method

dynamic showDialog()

Implementation

showDialog() {
  showConferenceDialog(
    title: RoomContentsTranslations.translate('liveScreen'),
    message: RoomContentsTranslations.translate('stopTUIRoomScreenShare'),
    cancelText: RoomContentsTranslations.translate('cancel'),
    confirmText: RoomContentsTranslations.translate('stop'),
    onConfirm: () {
      RoomEngineManager().stopScreenSharing();
      Get.back();
    },
  );
}