ParticipantJoined constructor
ParticipantJoined({
- String? callCid,
- Participant? participant,
- bool? isPinned,
Implementation
factory ParticipantJoined({
$core.String? callCid,
$0.Participant? participant,
$core.bool? isPinned,
}) {
final result = create();
if (callCid != null) result.callCid = callCid;
if (participant != null) result.participant = participant;
if (isPinned != null) result.isPinned = isPinned;
return result;
}