landmarkStoreId property

int get landmarkStoreId

Returns the id of the associated LandmarkStore.

Returns

  • int: The LandmarkStore.id that this session targets.

See also:

Implementation

int get landmarkStoreId {
  final OperationResult resultString = objectMethod(
    pointerId,
    'LandmarkBrowseSession',
    'getLandmarkStoreId',
  );

  return resultString['result'];
}