getFeaturedProducts method
getFeaturedProducts
Implementation
Future getFeaturedProducts(merchantId) async {
var data = {
'merchant_id': merchantId,
};
var apiResponse = await post("/customer/products/featured", data);
return apiResponse;
}