Input constructor
const
Input({
- InputType? type,
- 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? onInput,
- EventCallback? onChange,
- EventCallback? onKeyUp,
- EventCallback? onKeyDown,
- EventCallback? onKeyPress,
- Map<
String, String> ? additionalAttributes,
Implementation
const Input({
InputType? type,
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? onInput,
EventCallback? onChange,
EventCallback? onKeyUp,
EventCallback? onKeyDown,
EventCallback? onKeyPress,
Map<String, String>? additionalAttributes,
}) : super(
name: name,
form: form,
value: value,
tabIndex: tabIndex,
disabled: disabled,
inputMode: inputMode,
type: type,
key: key,
ref: ref,
id: id,
title: title,
style: style,
className: className,
hidden: hidden,
innerText: innerText,
child: child,
children: children,
onClick: onClick,
onInput: onInput,
onChange: onChange,
onKeyUp: onKeyUp,
onKeyDown: onKeyDown,
onKeyPress: onKeyPress,
additionalAttributes: additionalAttributes,
);