getWikiImageDescription method

String getWikiImageDescription(
  1. 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

Throws

  • An exception if it fails.

Implementation

String getWikiImageDescription(final int index) {
  final OperationResult resultString = objectMethod(
    _pointerId,
    'ExternalInfo',
    'getWikiImageDescription',
    args: index,
  );

  return resultString['result'];
}