FormFieldWidget constructor

const FormFieldWidget({
  1. Key? key,
  2. required String fieldName,
  3. required TextEditingController controller,
  4. void onChanged(
    1. String
    )?,
})

Implementation

const FormFieldWidget(
    {super.key, required this.fieldName, required this.controller, this.onChanged});