LandingFormField constructor

const LandingFormField(
  1. {Key? key,
  2. required String hintText,
  3. TextInputType? textInputType,
  4. Iterable<String>? autofillHints,
  5. StringCallback? validator,
  6. StringVoidCallback? onSaved,
  7. StringVoidCallback? onChanged,
  8. bool isPassword = false,
  9. TextEditingController? controller}
)

Implementation

const LandingFormField({
  super.key,
  required this.hintText,
  this.textInputType,
  this.autofillHints,
  this.validator,
  this.onSaved,
  this.onChanged,
  this.isPassword = false,
  this.controller,
});