toJson method
Implementation
core.Map<core.String, core.dynamic> toJson() {
final degradedHostCount = this.degradedHostCount;
final degradedInfraCount = this.degradedInfraCount;
final healthStatus = this.healthStatus;
final healthyHostCount = this.healthyHostCount;
final healthyInfraCount = this.healthyInfraCount;
return {
'degradedHostCount': ?degradedHostCount,
'degradedInfraCount': ?degradedInfraCount,
'healthStatus': ?healthStatus,
'healthyHostCount': ?healthyHostCount,
'healthyInfraCount': ?healthyInfraCount,
};
}