BuildTextFormField constructor

const BuildTextFormField({
  1. Key? key,
  2. required String label,
  3. TextEditingController? controller,
  4. bool obscureText = false,
  5. dynamic change(
    1. String?
    )?,
  6. bool? readOnly,
})

Implementation

const BuildTextFormField(
    {super.key,
    required this.label,
    this.controller,
    this.obscureText = false,
    this.change,
    this.readOnly});