getWikiImageTitle method

String getWikiImageTitle(
  1. int index
)

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:

Implementation

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

  return resultString['result'];
}