InputFile constructor

const InputFile({
  1. Key? key,
  2. String? id,
  3. String? name,
  4. String? accept,
  5. bool? multiple,
  6. bool? required,
  7. bool? disabled,
  8. String? title,
  9. String? style,
  10. String? classAttribute,
  11. int? tabIndex,
  12. bool? draggable,
  13. bool? contentEditable,
  14. bool? hidden,
  15. String? onClickAttribute,
  16. String? innerText,
  17. List<Widget>? children,
  18. EventCallback? onChange,
  19. EventCallback? onClick,
  20. Map<String, String>? additionalAttributes,
})

Implementation

const InputFile({
  Key? key,
  String? id,
  String? name,
  String? accept,
  bool? multiple,
  bool? required,
  bool? disabled,
  String? title,
  String? style,
  String? classAttribute,
  int? tabIndex,
  bool? draggable,
  bool? contentEditable,
  bool? hidden,
  String? onClickAttribute,
  String? innerText,
  List<Widget>? children,
  EventCallback? onChange,
  EventCallback? onClick,
  Map<String, String>? additionalAttributes,
}) : super(
        key: key,
        id: id,
        type: InputType.file,
        name: name,
        accept: accept,
        multiple: multiple,
        disabled: disabled,
        required: required,
        title: title,
        style: style,
        classAttribute: classAttribute,
        tabIndex: tabIndex,
        draggable: draggable,
        contentEditable: contentEditable,
        hidden: hidden,
        onClickAttribute: onClickAttribute,
        innerText: innerText,
        children: children,
        onChange: onChange,
        onClick: onClick,
        additionalAttributes: additionalAttributes,
      );