landmarkStoreId property

int get landmarkStoreId

Get 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

Throws

  • An exception if it fails.

Implementation

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

  return resultString['result'];
}