add method
- LandmarkStore lms
Adds all categories from lms into this collection.
Parameters
lms: The source LandmarkStore whose categories will be added.
Returns
- GemError: GemError.success on success; other values indicate failure.
Implementation
GemError add(final LandmarkStore lms) {
final OperationResult resultString = objectMethod(
pointerId,
'LandmarkStoreCollection',
'addAllStoreCategories',
args: lms.id,
dependencyId: _mapPointerId,
);
return GemErrorExtension.fromCode(resultString['result']);
}