id property

int get id

Get the session id

Returns

  • The session id

Throws

  • An exception if it fails

Implementation

int get id {
  final OperationResult resultString = objectMethod(
    _pointerId,
    'LandmarkBrowseSession',
    'getId',
  );

  return resultString['result'];
}