displayArticle method

Future<void> displayArticle(
  1. String articleId
)

To display an Article, pass in an articleId from your Intercom workspace.

An article must be ‘live’ to be used in this feature. If it is in a draft or paused state, end-users will see an error if the app tries to open the content.

Implementation

Future<void> displayArticle(String articleId) async {
  return IntercomFlutterPlatform.instance.displayArticle(articleId);
}