landmarkStoreId property

int get landmarkStoreId

Returns the ID of the landmark store that contains this landmark.

If the landmark is not attached to any store this returns -1.

Returns

  • int: Landmark store ID, or -1 when not attached.

See also:

Implementation

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

  return resultString['result'];
}