InputFile constructor
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,
- String? onClickAttribute,
- String? innerText,
- List<
Widget> ? children, - EventCallback? onChange,
- EventCallback? onClick,
- 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,
);