ComponentHealth constructor

ComponentHealth({
  1. String? component,
  2. List<HealthCheck>? componentHealthChecks,
  3. String? componentHealthType,
  4. String? state,
  5. List<ComponentHealth>? subComponentsHealth,
})

Implementation

ComponentHealth({
  this.component,
  this.componentHealthChecks,
  this.componentHealthType,
  this.state,
  this.subComponentsHealth,
});