changeMicrophoneStatus method
Implementation
changeMicrophoneStatus(bool newValue) {
mediaStream?.getAudioTracks().forEach((element) {
element.enabled = newValue;
});
isAudioActive = newValue;
}
changeMicrophoneStatus(bool newValue) {
mediaStream?.getAudioTracks().forEach((element) {
element.enabled = newValue;
});
isAudioActive = newValue;
}