FormWarningLabel constructor

const FormWarningLabel({
  1. Key? key,
  2. required bool isWarned,
  3. 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,
});