CallState constructor
CallState({
- Iterable<
Participant> ? participants, - Timestamp? startedAt,
- ParticipantCount? participantCount,
- Iterable<
Pin> ? pins,
Implementation
factory CallState({
$core.Iterable<Participant>? participants,
$0.Timestamp? startedAt,
ParticipantCount? participantCount,
$core.Iterable<Pin>? pins,
}) {
final result = create();
if (participants != null) result.participants.addAll(participants);
if (startedAt != null) result.startedAt = startedAt;
if (participantCount != null) result.participantCount = participantCount;
if (pins != null) result.pins.addAll(pins);
return result;
}