remove method
- LandmarkStore lms
Removes all category ids associated with the given lms from the collection.
Parameters
lms: The LandmarkStore whose categories should be removed.
Returns
- GemError: GemError.success on success; otherwise an appropriate error.
Implementation
GemError remove(final LandmarkStore lms) {
final OperationResult resultString = objectMethod(
pointerId,
'LandmarkStoreCollection',
'remove',
args: lms.pointerId,
dependencyId: _mapPointerId,
);
return GemErrorExtension.fromCode(resultString['result']);
}