toJson method

Map<String, dynamic> toJson()

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,
  };
}