MockHttpConnectionInfo constructor

MockHttpConnectionInfo({
  1. String remoteIp = '127.0.0.1',
  2. int remotePort = 12345,
  3. int localPort = 8080,
})

Implementation

MockHttpConnectionInfo({
  String remoteIp = '127.0.0.1',
  this.remotePort = 12345,
  this.localPort = 8080,
}) : remoteAddress = MockInternetAddress(remoteIp);