FormWarningLabel constructor
const
FormWarningLabel({
- Key? key,
- required bool isWarned,
- required EasyFormzTheme theme,
Creates a FormWarningLabel widget.
The isWarned and theme parameters are required.
Implementation
const FormWarningLabel({
super.key,
required this.isWarned,
required this.theme,
});