HTTPIngressPath constructor

const HTTPIngressPath({
  1. required IngressBackend backend,
  2. String? path,
  3. required String pathType,
})

Default constructor.

Implementation

const HTTPIngressPath({
  required this.backend,
  this.path,
  required this.pathType,
});