SELECTElement constructor
SELECTElement({})
Implementation
SELECTElement(
{Map<String, dynamic>? attributes,
Object? id,
Object? name,
Object? type,
Object? classes,
Object? style,
Object? options,
bool? multiple,
bool? hidden,
bool disabled = false,
bool commented = false})
: super._('select',
id: id,
classes: classes,
style: style,
attributes: {
...?attributes,
if (name != null) 'name': name,
if (type != null) 'type': type,
if (multiple != null && multiple) 'multiple': true,
if (disabled) 'disabled': disabled,
},
content: OPTIONElement.toOptions(options),
hidden: hidden,
commented: commented);