markReviewed method
Implementation
Future<void> markReviewed({
required String keyPath,
required String locale,
}) async {
await _requestJson(
'POST',
'/api/catalog/review',
body: <String, dynamic>{
'keyPath': keyPath,
'locale': locale,
},
);
}