openArticle static method

  1. @Deprecated('This method was deprecated after v3.1.2, Use knowledgeBase.openResource() method instead.')
Future<String> openArticle(
  1. String articleID
)

Opens an article from the knowledge base using the articleID. See knowledgeBase.openResource(type, id) in knowledgeBase

Implementation

@Deprecated(
    'This method was deprecated after v3.1.2, Use knowledgeBase.openResource() method instead.')
static Future<String> openArticle(String articleID) async {
  final String articleList =
      await _channel.invokeMethod('openArticle', articleID);
  return articleList;
}