HealthCheckResult.fromJson constructor
Implementation
factory HealthCheckResult.fromJson(Map<String, Object?> json) {
return HealthCheckResult(
description: json[r'description'] as String?,
name: json[r'name'] as String?,
passed: json[r'passed'] as bool? ?? false,
);
}