MetricStatus constructor

const MetricStatus({
  1. ContainerResourceMetricStatus? containerResource,
  2. ExternalMetricStatus? external,
  3. ObjectMetricStatus? object,
  4. PodsMetricStatus? pods,
  5. ResourceMetricStatus? resource,
  6. required String type,
})

The main constructor.

Implementation

const MetricStatus({
  this.containerResource,
  this.external,
  this.object,
  this.pods,
  this.resource,
  required this.type,
});