TextArea constructor
const
TextArea({
- String? autoComplete,
- String? name,
- String? form,
- String? value,
- String? placeholder,
- int? rows,
- int? cols,
- int? minLength,
- int? maxLength,
- bool? required,
- bool? readOnly,
- bool? disabled,
- SpellCheckType? spellCheck,
- WrapType? wrap,
- EventCallback? onChange,
- EventCallback? onInput,
- EventCallback? onKeyUp,
- EventCallback? onKeyDown,
- EventCallback? onKeyPress,
- Key? key,
- NullableElementCallback? ref,
- String? id,
- String? title,
- String? style,
- String? className,
- String? innerText,
- Widget? child,
- List<
Widget> ? children, - EventCallback? onClick,
- Map<
String, String> ? additionalAttributes,
Implementation
const TextArea({
this.autoComplete,
this.name,
this.form,
this.value,
this.placeholder,
this.rows,
this.cols,
this.minLength,
this.maxLength,
this.required,
this.readOnly,
this.disabled,
this.spellCheck,
this.wrap,
this.onChange,
this.onInput,
this.onKeyUp,
this.onKeyDown,
this.onKeyPress,
Key? key,
NullableElementCallback? ref,
String? id,
String? title,
String? style,
String? className,
bool? hidden,
String? innerText,
Widget? child,
List<Widget>? children,
EventCallback? onClick,
Map<String, String>? additionalAttributes,
}) : super(
key: key,
ref: ref,
id: id,
title: title,
style: style,
className: className,
hidden: hidden,
innerText: innerText,
child: child,
children: children,
onClick: onClick,
additionalAttributes: additionalAttributes,
);