copyWith method
      
GroupCallParticipantVideoInfo
copyWith({ 
    
    
- List<GroupCallVideoSourceGroup> ? sourceGroups,
- String? endpointId,
- bool? isPaused,
Implementation
GroupCallParticipantVideoInfo copyWith({
  List<GroupCallVideoSourceGroup>? sourceGroups,
  String? endpointId,
  bool? isPaused,
}) =>
    GroupCallParticipantVideoInfo(
      sourceGroups: sourceGroups ?? this.sourceGroups,
      endpointId: endpointId ?? this.endpointId,
      isPaused: isPaused ?? this.isPaused,
    );