HttpProxyAdapter constructor
Implementation
HttpProxyAdapter({this.ipAddr = 'localhost', this.port = 8888}) {
onHttpClientCreate = (client) {
var proxy = '$ipAddr:$port';
client.findProxy = (url) {
return 'PROXY $proxy';
};
client.badCertificateCallback =
(X509Certificate cert, String host, int port) => true;
};
}