landmarkStoreId property
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:
- LandmarkStoreService.getLandmarkStoreById for retrieving the LandmarkStore instance.
Implementation
int get landmarkStoreId {
final OperationResult resultString = objectMethod(
pointerId,
'Landmark',
'getLandmarkStoreId',
);
return resultString['result'];
}