HealthCheckServiceReference.fromJson constructor
HealthCheckServiceReference.fromJson(
- Object? j
Implementation
factory HealthCheckServiceReference.fromJson(Object? j) {
final json = j as Map<String, Object?>;
return HealthCheckServiceReference(
healthCheckService: switch (json['healthCheckService']) {
null => null,
Object $1 => decodeString($1),
},
);
}