IngressSpec constructor

const IngressSpec({
  1. IngressBackend? defaultBackend,
  2. String? ingressClassName,
  3. List<IngressRule>? rules,
  4. List<IngressTLS>? tls,
})

Default constructor.

Implementation

const IngressSpec({
  this.defaultBackend,
  this.ingressClassName,
  this.rules,
  this.tls,
});