uid property

int get uid

Get the unique ID of the item within the overlay.

** Returns**

  • The item ID

Throws

  • An exception if it fails

Implementation

int get uid {
  final OperationResult resultString = objectMethod(
    _pointerId,
    'OverlayItem',
    'uid',
  );

  return resultString['result'];
}