getProducts method

Future getProducts(
  1. dynamic merchantId
)

getProducts

Implementation

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