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