DirectTCPSocketOptions constructor

DirectTCPSocketOptions({
  1. required bool noDelay,
  2. num? keepAliveDelay,
  3. num? sendBufferSize,
  4. num? receiveBufferSize,
  5. DirectSocketDnsQueryType? dnsQueryType,
})

Implementation

DirectTCPSocketOptions({
  required this.noDelay,
  this.keepAliveDelay,
  this.sendBufferSize,
  this.receiveBufferSize,
  this.dnsQueryType,
});