TEXTAREAElement constructor
TEXTAREAElement({})
Implementation
TEXTAREAElement(
{Map<String, dynamic>? attributes,
Object? id,
Object? name,
Object? classes,
Object? style,
Object? cols,
Object? rows,
Object? content,
bool? hidden,
bool disabled = false,
bool commented = false})
: super._('textarea',
id: id,
classes: classes,
style: style,
attributes: {
if (name != null) 'name': name,
if (cols != null) 'cols': cols,
if (rows != null) 'rows': rows,
if (disabled) 'disabled': disabled,
...?attributes
},
content: content,
hidden: hidden,
commented: commented);