Toggle audio track
@override Future<void> toggleAudio(bool enabled) async { _stream.getAudioTracks().forEach((track) { track.enabled = enabled; }); }