landmarkStoreId property

int get landmarkStoreId

Returns the parent landmark store id. If the category doesn't belong to a landmark store, the function will return GemError.notFound.code.

Returns

  • The landmark store id.

Implementation

int get landmarkStoreId {
  final OperationResult resultString = objectMethod(
    _pointerId,
    'LandmarkCategory',
    'getLandmarkStoreId',
  );

  return resultString['result'];
}