selectProxy method
Selects a proxy from the given list
Implementation
@override
Proxy selectProxy(List<Proxy> proxies) {
// This method is called without a domain context
// Use a generic selection based on overall scores
if (proxies.isEmpty) {
throw Exception('No proxies available');
}
return _selectByScore(proxies, '*');
}