searchCatalog method

Future<CatalogResponse> searchCatalog({
  1. required String objectId,
  2. required CatalogSearchRequest request,
  3. String? authToken,
})

Searches for CatalogObject of any type by matching supported search attribute values, excluding custom attribute values on items or item variations, against one or more of the specified query filters.

Implementation

Future<CatalogResponse> searchCatalog({
  required String objectId,
  required CatalogSearchRequest request,
  String? authToken,
}) async {
  return _catalogService.searchCatalog(objectId: objectId, request: request, authToken: authToken);
}