imagesCount property

int get imagesCount

Number of images found on the Wikipedia page.

Returns

  • int: Number of images available for the article.

Implementation

int get imagesCount {
  final OperationResult resultString = objectMethod(
    pointerId,
    'ExternalInfo',
    'getWikiImagesCount',
  );

  return resultString['result'];
}