imagesCount property

int get imagesCount

Get the count of the images on the Wikipedia page.

Returns

  • The count of the images on the Wikipedia page

Implementation

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

  return resultString['result'];
}