Port constructor

const Port({
  1. String? name,
  2. required int number,
  3. String? protocol,
  4. int? targetPort,
})

The main constructor.

Implementation

const Port({
  this.name,
  required this.number,
  this.protocol,
  this.targetPort,
});