getWikiPageTitle method
Get Wikipedia page title.
Get the Wikipedia page title in the requested language. Must be called only after the onWikiDataAvailable callback is triggered
Returns
- The Wikipedia page title
Throws
- An exception if it fails.
Implementation
String getWikiPageTitle() {
final OperationResult resultString = objectMethod(
_pointerId,
'ExternalInfo',
'getWikiPageTitle',
);
return resultString['result'];
}