Form constructor

const Form({
  1. String? name,
  2. String? action,
  3. String? accept,
  4. FormEncType? enctype,
  5. String? target,
  6. FormMethodType? method,
  7. EventCallback? onSubmit,
  8. Key? key,
  9. String? id,
  10. String? title,
  11. String? style,
  12. String? classAttribute,
  13. int? tabIndex,
  14. bool? draggable,
  15. bool? contentEditable,
  16. bool? hidden,
  17. String? onClickAttribute,
  18. String? innerText,
  19. List<Widget>? children,
  20. EventCallback? onClick,
  21. Map<String, String>? additionalAttributes,
})

Implementation

const Form({
  this.name,
  this.action,
  this.accept,
  this.enctype,
  this.target,
  this.method,
  this.onSubmit,
  Key? key,
  String? id,
  String? title,
  String? style,
  String? classAttribute,
  int? tabIndex,
  bool? draggable,
  bool? contentEditable,
  bool? hidden,
  String? onClickAttribute,
  String? innerText,
  List<Widget>? children,
  EventCallback? onClick,
  Map<String, String>? additionalAttributes,
}) : super(
        key: key,
        id: id,
        title: title,
        style: style,
        classAttribute: classAttribute,
        tabIndex: tabIndex,
        draggable: draggable,
        contentEditable: contentEditable,
        hidden: hidden,
        onClickAttribute: onClickAttribute,
        innerText: innerText,
        children: children,
        onClick: onClick,
        additionalAttributes: additionalAttributes,
      );