Forms constructor
Forms({
- Key? key,
- required List<
FormControls> formElements, - ValueChanged? onChanged,
- double? padding,
- Map? formMap,
- Map errorMessages = const {},
- Map validations = const {},
- Map decorations = const {},
- bool hideSaveBtn = false,
- String? actionSaveBtnText,
- ButtonStyle? actionButtonStyle,
- Function? actionSave,
Implementation
Forms(
{super.key,
required this.formElements,
this.onChanged,
this.padding,
this.formMap,
this.errorMessages = const {},
this.validations = const {},
this.decorations = const {},
this.hideSaveBtn = false,
this.actionSaveBtnText,
this.actionButtonStyle,
this.actionSave});