toJson method
Implementation
core.Map<core.String, core.dynamic> toJson() {
final endpointCount = this.endpointCount;
final group = this.group;
final healthyEndpointCount = this.healthyEndpointCount;
return {
'endpointCount': ?endpointCount,
'group': ?group,
'healthyEndpointCount': ?healthyEndpointCount,
};
}