getWikiImageTitle method

String getWikiImageTitle(
  1. int index
)

Get Wikipedia image title directly, without notifier.

Parameters

  • IN index Index of the image to get the title of.

Returns

  • The image title

Throws

  • An exception if it fails.

Implementation

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

  return resultString['result'];
}