add method
- LandmarkStore lms
Add all categories from the specified store.
Parameters
- IN lms The store
Returns
- GemError.success on success
- Other GemError values if it fails.
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']);
}