imageUid property

int get imageUid

Get the unique ID of the image.

Returns

  • The image unique ID

Implementation

int get imageUid {
  final OperationResult resultString = objectMethod(
    _pointerId,
    'Landmark',
    'getImageUid',
  );

  return resultString['result'];
}