popular static method

RecommendationLogic popular({
  1. String? categoryPath,
})

Implementation

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