bulkReview method
Implementation
Future<CatalogBulkReviewResult> bulkReview({
required List<CatalogReviewTarget> targets,
}) async {
final payload = await _requestJson(
'POST',
'/api/catalog/bulk-review',
body: <String, dynamic>{
'items': targets.map((target) => target.toJson()).toList(),
},
);
return CatalogBulkReviewResult.fromJson(payload);
}