GroupCallParticipantVideoInfo constructor

const GroupCallParticipantVideoInfo({
  1. required List<GroupCallVideoSourceGroup> sourceGroups,
  2. required String endpointId,
  3. required bool isPaused,
})

Contains information about a group call participant's video channel

Implementation

const GroupCallParticipantVideoInfo({
  required this.sourceGroups,
  required this.endpointId,
  required this.isPaused,
});