与freshchat的颤振集成,初始化时应显示帮助中心



我集成了flutter与fresh_chat sdk,我想在点击按钮时使用帮助中心小部件,我有像freshchat. showconversations()和freshchat. showfaq()这样的选项,但我无法找到freshchat帮助中心小部件。

你试过了吗

Freshchat.showFAQs();

使用以下方法进行自定义更改

Freshchat.showFAQ(
showContactUsOnFaqScreens: true,
showContactUsOnAppBar: true,
showFaqCategoriesAsGrid: true,
showContactUsOnFaqNotHelpful: true);
});

看起来FreshchatHelpCenter已经从最新版本中删除了

之前的实现是

FreshchatHelpCenter.show(
helpCenterConfig: HelpCenterConfig(
"CATEGORY_ID",
"FILTER_ID",
),
);