InputSubmit constructor

const InputSubmit({
  1. String? formAction,
  2. FormEncType? formEncType,
  3. FormMethodType? formMethod,
  4. String? formTarget,
  5. bool? formNoValidate,
  6. String? name,
  7. bool? disabled,
  8. String? form,
  9. String? inputMode,
  10. int? tabIndex,
  11. String? value,
  12. Key? key,
  13. NullableElementCallback? ref,
  14. String? id,
  15. String? title,
  16. String? style,
  17. String? className,
  18. bool? hidden,
  19. String? innerText,
  20. Widget? child,
  21. List<Widget>? children,
  22. EventCallback? onClick,
  23. Map<String, String>? additionalAttributes,
})

Implementation

const InputSubmit({
  String? formAction,
  FormEncType? formEncType,
  FormMethodType? formMethod,
  String? formTarget,
  bool? formNoValidate,
  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(
        formAction: formAction,
        formEncType: formEncType,
        formMethod: formMethod,
        formTarget: formTarget,
        formNoValidate: formNoValidate,
        name: name,
        form: form,
        value: value,
        tabIndex: tabIndex,
        disabled: disabled,
        inputMode: inputMode,
        type: InputType.submit,
        key: key,
        ref: ref,
        id: id,
        title: title,
        style: style,
        className: className,
        hidden: hidden,
        innerText: innerText,
        child: child,
        children: children,
        onClick: onClick,
        additionalAttributes: additionalAttributes,
      );