AField<T> constructor
const
AField<T> ({
- Key? key,
- required String? label,
- required String identifier,
- T? initialValue,
- void onChanged(
- T?
- bool expanded = false,
- int? flexible,
- bool readOnly = false,
- bool required = false,
- bool readonly = false,
- List<
ARule< ? customRules,T> > - EdgeInsets? padding,
- EdgeInsets? margin,
- bool linkToAForm = true,
- VoidCallback? onSubmit,
- int timerTime = 500,
Implementation
const AField({
super.key,
required this.label,
required this.identifier,
this.initialValue,
this.onChanged,
this.expanded = false,
this.flexible,
this.readOnly = false,
this.required = false,
this.readonly = false,
this.customRules,
this.padding,
this.margin,
this.linkToAForm = true,
this.onSubmit,
this.timerTime = 500,
});