changeStreamVideo method

void changeStreamVideo(
  1. String streamId,
  2. bool newValue
)

Sends the changeStreamVideo to the WebSocket server

Implementation

void changeStreamVideo(String streamId, bool newValue) {
  streamPropertyChange(
    streamId: streamId,
    property: 'videoActive',
    newValue: newValue,
    reason: 'publishVideo',
  );
}