textarea function
Node
textarea(
{ - bool? autofocus,
- num? cols,
- String? dirname,
- bool? disabled,
- String? form,
- num? maxlength,
- String? name,
- String? placeholder,
- bool? readonly,
- bool? required,
- num? rows,
- String? wrap,
- String? id,
- dynamic className,
- dynamic style,
- Map<String, dynamic> p = const {},
- Iterable<Node> c = const [],
})
Implementation
Node textarea({
bool? autofocus,
num? cols,
String? dirname,
bool? disabled,
String? form,
num? maxlength,
String? name,
String? placeholder,
bool? readonly,
bool? required,
num? rows,
String? wrap,
String? id,
className,
style,
Map<String, dynamic> p = const {},
Iterable<Node> c = const [],
}) =>
h(
'textarea',
_apply([
p
], {
'autofocus': autofocus,
'cols': cols,
'dirname': dirname,
'disabled': disabled,
'form': form,
'maxlength': maxlength,
'name': name,
'placeholder': placeholder,
'readonly': readonly,
'required': required,
'rows': rows,
'wrap': wrap,
'id': id,
'class': className,
'style': style
}),
[...c]);