HealthCheckResponse constructor

HealthCheckResponse({
  1. ParticipantCount? participantCount,
})

Implementation

factory HealthCheckResponse({
  $0.ParticipantCount? participantCount,
}) {
  final $result = create();
  if (participantCount != null) {
    $result.participantCount = participantCount;
  }
  return $result;
}