Network constructor

Network({
  1. String? destinationDomain,
  2. String? destinationIpV4,
  3. String? destinationIpV6,
  4. int? destinationPort,
  5. NetworkDirection? direction,
  6. PortRange? openPortRange,
  7. String? protocol,
  8. String? sourceDomain,
  9. String? sourceIpV4,
  10. String? sourceIpV6,
  11. String? sourceMac,
  12. int? sourcePort,
})

Implementation

Network({
  this.destinationDomain,
  this.destinationIpV4,
  this.destinationIpV6,
  this.destinationPort,
  this.direction,
  this.openPortRange,
  this.protocol,
  this.sourceDomain,
  this.sourceIpV4,
  this.sourceIpV6,
  this.sourceMac,
  this.sourcePort,
});