PortInfo constructor

PortInfo({
  1. List<String>? cidrListAliases,
  2. List<String>? cidrs,
  3. int? fromPort,
  4. NetworkProtocol? protocol,
  5. int? toPort,
})

Implementation

PortInfo({
  this.cidrListAliases,
  this.cidrs,
  this.fromPort,
  this.protocol,
  this.toPort,
});