ParticipantCount constructor

ParticipantCount({
  1. int? total,
  2. int? anonymous,
})

Implementation

factory ParticipantCount({
  $core.int? total,
  $core.int? anonymous,
}) {
  final _result = create();
  if (total != null) {
    _result.total = total;
  }
  if (anonymous != null) {
    _result.anonymous = anonymous;
  }
  return _result;
}