TextFormField constructor

const TextFormField({
  1. Key? key,
  2. TextEditingController? controller,
  3. String? initialValue,
  4. String? validator(
    1. String?
    )?,
  5. void onSaved(
    1. String
    )?,
  6. String? placeholder,
  7. TextStyle? style,
  8. int? maxLength,
})

Implementation

const TextFormField({
  super.key,
  this.controller,
  this.initialValue,
  this.validator,
  this.onSaved,
  this.placeholder,
  this.style,
  this.maxLength,
});