landmarkStoreId property
If the landmark store is set then it returns the landmark store ID.
Returns
- GemError.general.code (-1) on error.
- The landmark store ID on success. The id should be grater than 0
Throws
- An exception if it fails.
Implementation
int get landmarkStoreId {
final OperationResult resultString = objectMethod(
_pointerId,
'Landmark',
'getLandmarkStoreId',
);
return resultString['result'];
}