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