getFeaturedProducts method

Future getFeaturedProducts(
  1. dynamic merchantId
)

getFeaturedProducts

Implementation

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