uid property

int get uid

Get the unique Id of the overlay.

Returns

  • The overlay Id

Throws

  • An exception if it fails

Implementation

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

  return resultString['result'];
}