updateCustomerShippingInformation method
Implementation
Future<Customer> updateCustomerShippingInformation(
ShippingInformation shippingInfo) async {
final key = await _keyManager.retrieveEphemeralKey();
final customer = await _apiHandler.updateCustomerShippingInformation(
key.customerId, shippingInfo, key.secret??"");
return customer;
}