InputFile constructor
const
InputFile({
- String? accept,
- String? capture,
- bool? multiple,
- String? name,
- bool? disabled,
- String? form,
- String? inputMode,
- int? tabIndex,
- String? value,
- Key? key,
- NullableElementCallback? ref,
- String? id,
- String? title,
- String? style,
- String? className,
- String? innerText,
- Widget? child,
- List<
Widget> ? children, - EventCallback? onClick,
- EventCallback? onChange,
- Map<
String, String> ? additionalAttributes,
Implementation
const InputFile({
String? accept,
String? capture,
bool? multiple,
String? name,
bool? disabled,
String? form,
String? inputMode,
int? tabIndex,
String? value,
Key? key,
NullableElementCallback? ref,
String? id,
String? title,
String? style,
String? className,
bool? hidden,
String? innerText,
Widget? child,
List<Widget>? children,
EventCallback? onClick,
EventCallback? onChange,
Map<String, String>? additionalAttributes,
}) : super(
accept: accept,
capture: capture,
multiple: multiple,
name: name,
form: form,
value: value,
tabIndex: tabIndex,
disabled: disabled,
inputMode: inputMode,
type: InputType.file,
key: key,
ref: ref,
id: id,
title: title,
style: style,
className: className,
hidden: hidden,
innerText: innerText,
child: child,
children: children,
onClick: onClick,
onChange: onChange,
additionalAttributes: additionalAttributes,
);