Flutter integration with freshchat , on initialization it should display helpcenter

298 Views Asked by At

I integrated flutter with fresh_chat sdk , i want to use the helpcenter widget on click of a button, i am having options like freshchat.showConversations() and freshchat.showFAQ() but i am not able to find freshchat helpcenter widget.

1

There are 1 best solutions below

2
Sagar On

have you tried this

  Freshchat.showFAQs();

use following for custom changes

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

Looks like FreshchatHelpCenter has been removed from the latest version

its previous implementation was

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