GroupCallParticipantVideo constructor

const GroupCallParticipantVideo({
  1. required bool paused,
  2. required String endpoint,
  3. required List<GroupCallParticipantVideoSourceGroupBase> sourceGroups,
  4. int? audioSource,
})

Group Call Participant Video constructor.

Implementation

const GroupCallParticipantVideo({
  required this.paused,
  required this.endpoint,
  required this.sourceGroups,
  this.audioSource,
}) : super._();