ComponentHealth constructor

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

Implementation

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