microphoneException property
ValueNotifier<ZegoUIKitDeviceExceptionType?>
get
microphoneException
Implementation
ValueNotifier<ZegoUIKitDeviceExceptionType?> get microphoneException {
final user = ZegoUIKitCore.shared.coreData.getUser(id);
if (user.isEmpty) {
return ZegoUIKitCore.shared.coreData
.getUserInMixerStream(id)
.microphoneException;
}
return user.microphoneException;
}