changeStreamAudio method

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

Sends the changeStreamAudio to the WebSocket server

Implementation

void changeStreamAudio(String streamId, bool newValue) {
  streamPropertyChange(
    streamId: streamId,
    property: 'audioActive',
    newValue: newValue,
    reason: 'publishAudio',
  );
}