removeAllStoreCategories method

GemError removeAllStoreCategories(
  1. int storeId
)

Remove all categories of the specified store ID.

Parameters

  • IN storeId The store ID

Returns

Implementation

GemError removeAllStoreCategories(final int storeId) {
  final OperationResult resultString = objectMethod(
    _pointerId,
    'LandmarkStoreCollection',
    'removeAllStoreCategories',
    args: storeId,
    dependencyId: _mapPointerId,
  );

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