copyWith method
Implementation
HealthCheckResult copyWith(
    {String? description, String? name, bool? passed}) {
  return HealthCheckResult(
    description: description ?? this.description,
    name: name ?? this.name,
    passed: passed ?? this.passed,
  );
}