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