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