Select constructor

const Select({
  1. String? autoComplete,
  2. String? name,
  3. String? form,
  4. String? size,
  5. bool? multiple,
  6. bool? required,
  7. bool? disabled,
  8. EventCallback? onChange,
  9. Key? key,
  10. NullableElementCallback? ref,
  11. String? id,
  12. String? title,
  13. String? style,
  14. String? className,
  15. bool? hidden,
  16. String? innerText,
  17. Widget? child,
  18. List<Widget>? children,
  19. EventCallback? onClick,
  20. Map<String, String>? additionalAttributes,
})

Implementation

const Select({
  this.autoComplete,
  this.name,
  this.form,
  this.size,
  this.multiple,
  this.required,
  this.disabled,
  this.onChange,
  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,
      );