displayHelpCenterCollections method

Future<void> displayHelpCenterCollections(
  1. List<String> collectionIds
)

To display an Activity with your Help Center content for specific collections.

Make sure Help Center is turned on. If you don't have Help Center enabled in your Intercom settings the method displayHelpCenterCollections will fail to load. The collectionIds you want to display.

Implementation

Future<void> displayHelpCenterCollections(List<String> collectionIds) {
  return IntercomFlutterPlatform.instance
      .displayHelpCenterCollections(collectionIds);
}