IngressPortStatus constructor

const IngressPortStatus({
  1. String? error,
  2. required int port,
  3. required String protocol,
})

Default constructor.

Implementation

const IngressPortStatus({
  this.error,
  required this.port,
  required this.protocol,
});