toWidget method
Builds the current field into a Widget to be used for input in the side panel.
Implementation
@override
Widget toWidget(BuildContext context, String group, String? value) {
return TextFormField(
maxLines: maxLines,
initialValue: value ?? initialValue,
onChanged: (value) => updateField(context, group, value),
);
}