select constructor
const
select(
- List<
Component> children, { - String? name,
- String? value,
- bool multiple = false,
- bool required = false,
- bool disabled = false,
- bool autofocus = false,
- String? autocomplete,
- int? size,
- ValueChanged<
List< ? onInput,String> > - ValueChanged<
List< ? onChange,String> > - String? id,
- String? classes,
- Styles? styles,
- Map<
String, String> ? attributes, - Map<
String, EventCallback> ? events, - Key? key,
The <select> HTML element represents a control that provides a menu of options.
Implementation
const select(
this.children, {
this.name,
this.value,
this.multiple = false,
this.required = false,
this.disabled = false,
this.autofocus = false,
this.autocomplete,
this.size,
this.onInput,
this.onChange,
this.id,
this.classes,
this.styles,
this.attributes,
this.events,
super.key,
});