wikiPageTitle property

String get wikiPageTitle

Get Wikipedia page title.

Get the Wikipedia page title in the requested language.

Returns

  • The Wikipedia page title

Throws

  • An exception if it fails.

Implementation

String get wikiPageTitle {
  final OperationResult resultString = objectMethod(
    _pointerId,
    'ExternalInfo',
    'getWikiPageTitle',
  );

  return resultString['result'];
}