removeStream method
Remove a stream from this participant by ID
Implementation
RemoteParticipant removeStream(String streamId) {
return copyWith(
streams: streams.where((s) => s.id != streamId).toList(),
);
}
Remove a stream from this participant by ID
RemoteParticipant removeStream(String streamId) {
return copyWith(
streams: streams.where((s) => s.id != streamId).toList(),
);
}