MiniTextArea constructor
const
MiniTextArea({
- Key? key,
- String? initialValue,
- TextEditingController? controller,
- FocusNode? focusNode,
- ValueChanged<
String> ? onChanged, - ValueChanged<
String> ? onSubmitted, - String? placeholder,
- int minLines = 3,
- int maxLines = 5,
- TextInputAction textInputAction = TextInputAction.newline,
- bool enabled = true,
- bool autofocus = false,
- int? maxLength,
Implementation
const MiniTextArea({
super.key,
this.initialValue,
this.controller,
this.focusNode,
this.onChanged,
this.onSubmitted,
this.placeholder,
this.minLines = 3,
this.maxLines = 5,
this.textInputAction = TextInputAction.newline,
this.enabled = true,
this.autofocus = false,
this.maxLength,
});