ListParticipantsResponse constructor
ListParticipantsResponse({
- Iterable<
Participant> ? participants, - String? nextPageToken,
Implementation
factory ListParticipantsResponse({
$core.Iterable<Participant>? participants,
$core.String? nextPageToken,
}) {
final _result = create();
if (participants != null) {
_result.participants.addAll(participants);
}
if (nextPageToken != null) {
_result.nextPageToken = nextPageToken;
}
return _result;
}