ServicePortSpec constructor

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

Implementation

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