addAllStoreCategories method

GemError addAllStoreCategories(
  1. int storeId
)

Adds all categories from the store identified by storeId into this collection.

Parameters

  • storeId: Identifier of the source store.

Returns

Implementation

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

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