ParticipantJoined constructor

ParticipantJoined({
  1. String? callCid,
  2. Participant? participant,
  3. 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;
}