isEqual method

bool isEqual(
  1. TCICBasicConfig other
)

Implementation

bool isEqual(TCICBasicConfig other) {
  return autoStartClass == other.autoStartClass && allowEarlyEnter == other.allowEarlyEnter && allowPipMode == other.allowPipMode && autoStartStageLoop == other.autoStartStageLoop && enableSmallVideoStream == other.enableSmallVideoStream && enableVirtualBackground == other.enableVirtualBackground && rememberBeautyConfig == other.rememberBeautyConfig && rememberVirtualBackgroundConfig == other.rememberVirtualBackgroundConfig && microphoneAutoOpen == other.microphoneAutoOpen && cameraAutoOpen == other.cameraAutoOpen && logPassword == other.logPassword && enableExperienceDegradation == other.enableExperienceDegradation && enableFullLogReport == other.enableFullLogReport && handupButtonKeepEnabled == other.handupButtonKeepEnabled && enableQuicMode == other.enableQuicMode && showStreamSubscriptionSetting == other.showStreamSubscriptionSetting && showQuicModeSetting == other.showQuicModeSetting && teacherVideoFloating == other.teacherVideoFloating;
}