getWikiImageTitle method
Returns the title for the Wikipedia image at index.
Parameters
index: Zero-based index of the image.
Returns
String: The image title or an empty string when invalid.
Also see:
- imagesCount — Get the total number of images.
Implementation
String getWikiImageTitle(final int index) {
final OperationResult resultString = objectMethod(
pointerId,
'ExternalInfo',
'getWikiImageTitle',
args: index,
);
return resultString['result'];
}