BaseTitle constructor
BaseTitle({})
Implementation
BaseTitle({
Key? key,
this.title = "",
this.subTitle,
this.isRequire = false,
this.isEdit = true,
this.error = "",
this.tipLabel,
this.titleWidget,
this.subTitleWidget,
this.customActionWidget,
this.onTip,
this.backgroundColor,
this.themeData,
}) : super(key: key) {
themeData ??= FormItemConfig();
themeData = BaseThemeConfig.instance
.getConfig(configId: themeData!.configId)
.formItemConfig
.merge(themeData);
themeData =
themeData!.merge(FormItemConfig(backgroundColor: backgroundColor));
}