CustomTextFormField constructor

CustomTextFormField(
  1. {bool? autofocus,
  2. String? hintText,
  3. String? initialValue,
  4. TextCapitalization? textCapitalization,
  5. CustomFormFieldStyle? style,
  6. TextInputType? keyboardType,
  7. Function? onSaved,
  8. Function? onChanged,
  9. Function? validator,
  10. bool? enabled,
  11. TextEditingController? controller,
  12. Widget? prefixIcon,
  13. Widget? suffixIcon,
  14. void onTap(
      )?,
    1. FocusNode? focusNode,
    2. bool? readOnly}
    )

    Implementation

    CustomTextFormField({
      this.autofocus,
      this.hintText,
      this.initialValue,
      this.textCapitalization,
      this.style,
      this.keyboardType,
      this.onSaved,
      this.onChanged,
      this.validator,
      this.enabled,
      this.controller,
      this.prefixIcon,
      this.suffixIcon,
      this.onTap,
      this.focusNode,
      this.readOnly,
    });