TextFormField constructor
TextFormField({})
Creates a TextFormField with optional controller and validator.
Implementation
TextFormField({
super.key,
this.controller,
String? initialValue,
super.validator,
super.onSaved,
this.placeholder,
this.style,
this.maxLength,
}) : super(
initialValue: initialValue ?? '',
builder: _defaultBuilder,
);