addAllStoreCategories method
- int storeId
Adds all categories from the store identified by storeId into this collection.
Parameters
storeId: Identifier of the source store.
Returns
- GemError: GemError.success on success; GemError.notFound when the specified store cannot be found.
Implementation
GemError addAllStoreCategories(final int storeId) {
final OperationResult resultString = objectMethod(
pointerId,
'LandmarkStoreCollection',
'addAllStoreCategories',
args: storeId,
dependencyId: _mapPointerId,
);
return GemErrorExtension.fromCode(resultString['result']);
}