PortSpec constructor

PortSpec({
  1. required PortNum num,
  2. String? type,
  3. List<EndpointSpec>? endpoints,
  4. String? liveness,
})

Implementation

PortSpec({required this.num, this.type, List<EndpointSpec>? endpoints, this.liveness}) : endpoints = endpoints ?? const [];