SocketAddress constructor

SocketAddress({
  1. String? address,
  2. bool? ipv4Compat,
  3. String? namedPort,
  4. int? portValue,
  5. String? protocol,
  6. String? resolverName,
})

Implementation

SocketAddress({
  this.address,
  this.ipv4Compat,
  this.namedPort,
  this.portValue,
  this.protocol,
  this.resolverName,
});