InputImage constructor
const
InputImage({
- String? alt,
- String? formAction,
- FormEncType? formEncType,
- FormMethodType? formMethod,
- String? formTarget,
- bool? formNoValidate,
- String? height,
- String? src,
- String? width,
- 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,
- Map<
String, String> ? additionalAttributes,
Implementation
const InputImage({
String? alt,
String? formAction,
FormEncType? formEncType,
FormMethodType? formMethod,
String? formTarget,
bool? formNoValidate,
String? height,
String? src,
String? width,
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,
Map<String, String>? additionalAttributes,
}) : super(
alt: alt,
formAction: formAction,
formEncType: formEncType,
formMethod: formMethod,
formTarget: formTarget,
formNoValidate: formNoValidate,
height: height,
src: src,
width: width,
name: name,
form: form,
value: value,
tabIndex: tabIndex,
disabled: disabled,
inputMode: inputMode,
type: InputType.image,
key: key,
ref: ref,
id: id,
title: title,
style: style,
className: className,
hidden: hidden,
innerText: innerText,
child: child,
children: children,
onClick: onClick,
additionalAttributes: additionalAttributes,
);