NetworkConnection constructor

NetworkConnection({
  1. String? localIpAddress,
  2. int? localPort,
  3. String? pid,
  4. String? processName,
  5. String? protocol,
  6. String? remoteIpAddress,
  7. int? remotePort,
  8. String? state,
})

Implementation

NetworkConnection({
  this.localIpAddress,
  this.localPort,
  this.pid,
  this.processName,
  this.protocol,
  this.remoteIpAddress,
  this.remotePort,
  this.state,
});