cameraException property

Implementation

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