remove method

GemError remove(
  1. LandmarkStore lms
)

Remove all categories of the specified store.

Parameters

  • IN lms The store

Returns

Throws

  • An exception if it fails.

Implementation

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

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