popular static method
Implementation
static RecommendationLogic popular({String? categoryPath}) {
Map<String, String> dataMap = {};
if (categoryPath != null) {
dataMap["categoryPath"] = categoryPath;
}
return RecommendationLogic._(name: _POPULAR, data: dataMap);
}