getWikiImageDescription method
- int index
Get Wikipedia image description directly, without notifier.
Parameters
- IN index Index of the image to get the description of.
Returns
- The image description if the index is valid, empty string otherwise
Implementation
String getWikiImageDescription(final int index) {
final OperationResult resultString = objectMethod(
_pointerId,
'ExternalInfo',
'getWikiImageDescription',
args: index,
);
return resultString['result'];
}