findCustomer method

Future findCustomer(
  1. dynamic merchantId,
  2. dynamic email
)

findCustomer

Implementation

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