addStream method

RemoteParticipant addStream(
  1. RemoteStream stream
)

Add a stream to this participant

Implementation

RemoteParticipant addStream(RemoteStream stream) {
  return copyWith(streams: [...streams, stream]);
}