IPEndpoint constructor

IPEndpoint({
  1. required String protocol,
  2. required String host,
  3. required int port,
  4. required String sourceAddress,
  5. required List<InternetAddress> addressList,
  6. Endpoint? underlying,
  7. int timeout = 0,
  8. bool compress = false,
})

Implementation

IPEndpoint({
  required this.protocol,
  required this.host,
  required this.port,
  required this.sourceAddress,
  required this.addressList,
  Endpoint? underlying,
  int timeout = 0,
  bool compress = false,
}) : super(
        underlying: underlying,
        timeout: timeout,
        compress: compress,
      );