wikiPageDescription property

String get wikiPageDescription

Short textual summary of the Wikipedia page.

It is influenced by the selected SDK language and the availability of localized content on Wikipedia. Check the wikiPageLanguage to determine the language of the summary.

Returns

  • String: The page summary text.

Implementation

String get wikiPageDescription {
  final OperationResult resultString = objectMethod(
    pointerId,
    'ExternalInfo',
    'getWikiPageDescription',
  );

  return resultString['result'];
}