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