DirectUDPSocketOptions constructor

DirectUDPSocketOptions({
  1. String? remoteAddr,
  2. int? remotePort,
  3. String? localAddr,
  4. int? localPort,
  5. DirectSocketDnsQueryType? dnsQueryType,
  6. num? sendBufferSize,
  7. num? receiveBufferSize,
})

Implementation

DirectUDPSocketOptions({
  this.remoteAddr,
  this.remotePort,
  this.localAddr,
  this.localPort,
  this.dnsQueryType,
  this.sendBufferSize,
  this.receiveBufferSize,
});