setConfig method
Implementation
setConfig(TCICConfig conf) {
TCICLog.info(
"setConfig: ${conf.toJson()}",
actionModule: ActionModule.tcicController.name,
actionName: ActionName.setConfig.name,
);
_config = conf;
TCICTips.setAutoCloseEnabled(conf.basicConfig?.autoCloseTips ?? true);
if (conf.fontConfig != null) {
TCICFontManager().setFontConfig(conf.fontConfig!);
}
}