Ingress constructor

const Ingress({
  1. String? apiVersion,
  2. String? kind,
  3. ObjectMeta? metadata,
  4. IngressSpec? spec,
  5. IngressStatus? status,
})

Default constructor.

Implementation

const Ingress({
  this.apiVersion,
  this.kind,
  this.metadata,
  this.spec,
  this.status,
});