add method

GemError add(
  1. LandmarkStore lms
)

Add all categories from the specified store.

Parameters

  • IN lms The store

Returns

Throws

  • An exception if it fails.

Implementation

GemError add(final LandmarkStore lms) {
  final OperationResult resultString = objectMethod(
    _pointerId,
    'LandmarkStoreCollection',
    'addAllStoreCategories',
    args: lms.id,
  );

  return GemErrorExtension.fromCode(resultString['result']);
}