setAudioEnabled method
Implementation
@override
void setAudioEnabled({required String targetId, required bool isEnabled}) {
if (_subscribers[targetId]?.isAudioEnabled == isEnabled) return;
_subscribers[targetId]?.isAudioEnabled = isEnabled;
_notify(CallbackEvents.shouldBeUpdateState);
}