remove method

GemError remove(
  1. LandmarkStore lms
)

Remove all categories of the specified store.

Parameters

  • IN lms The store

Returns

Implementation

GemError remove(final LandmarkStore lms) {
  final OperationResult resultString = objectMethod(
    _pointerId,
    'LandmarkStoreCollection',
    'remove',
    args: lms.pointerId,
    dependencyId: _mapPointerId,
  );

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