updateCustomer method

Future<Map> updateCustomer(
  1. String token,
  2. String customerId,
  3. Map<String, dynamic> newCustomerInfo
)

Implementation

Future<Map> updateCustomer(
    String token, String customerId, Map<String, dynamic> newCustomerInfo) {
  throw UnimplementedError("Update Customer has not been implemented");
}