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