HealthCheckResult constructor

HealthCheckResult({
  1. String? description,
  2. String? name,
  3. bool? passed,
})

Implementation

HealthCheckResult({this.description, this.name, bool? passed})
    : passed = passed ?? false;