HealthCheckResponse constructor

HealthCheckResponse({
  1. ParticipantCount? participantCount,
})

Implementation

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