InputImage constructor

const InputImage({
  1. String? alt,
  2. String? formAction,
  3. FormEncType? formEncType,
  4. FormMethodType? formMethod,
  5. String? formTarget,
  6. bool? formNoValidate,
  7. String? height,
  8. String? src,
  9. String? width,
  10. String? name,
  11. bool? disabled,
  12. String? form,
  13. String? inputMode,
  14. int? tabIndex,
  15. String? value,
  16. Key? key,
  17. NullableElementCallback? ref,
  18. String? id,
  19. String? title,
  20. String? style,
  21. String? className,
  22. bool? hidden,
  23. String? innerText,
  24. Widget? child,
  25. List<Widget>? children,
  26. EventCallback? onClick,
  27. 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,
      );