NatInfo constructor

NatInfo({
  1. String? natGatewayName,
  2. String? networkUri,
  3. String? newDestinationIp,
  4. int? newDestinationPort,
  5. String? newSourceIp,
  6. int? newSourcePort,
  7. String? oldDestinationIp,
  8. int? oldDestinationPort,
  9. String? oldSourceIp,
  10. int? oldSourcePort,
  11. String? protocol,
  12. String? routerUri,
  13. String? type,
})

Implementation

NatInfo({
  this.natGatewayName,
  this.networkUri,
  this.newDestinationIp,
  this.newDestinationPort,
  this.newSourceIp,
  this.newSourcePort,
  this.oldDestinationIp,
  this.oldDestinationPort,
  this.oldSourceIp,
  this.oldSourcePort,
  this.protocol,
  this.routerUri,
  this.type,
});