TFormBuilder constructor
const
TFormBuilder({
- Key? key,
- TFormBase? input,
- List<
TFormField> ? fields, - double gutter = 16.0,
- VoidCallback? onValueChanged,
- String? label,
Implementation
const TFormBuilder({
super.key,
this.input,
this.fields,
this.gutter = 16.0,
this.onValueChanged,
this.label,
}) : assert((input == null) != (fields == null), 'Provide either "input" or "fields", not both.');