Form constructor
const
Form({
- String? name,
- String? acceptCharset,
- String? autoComplete,
- String? rel,
- String? action,
- FormMethodType? method,
- FormEncType? enctype,
- bool? noValidate,
- String? target,
- EventCallback? onSubmit,
- 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 Form({
this.name,
this.acceptCharset,
this.autoComplete,
this.rel,
this.action,
this.method,
this.enctype,
this.noValidate,
this.target,
this.onSubmit,
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(
key: key,
ref: ref,
id: id,
title: title,
style: style,
className: className,
hidden: hidden,
innerText: innerText,
child: child,
children: children,
onClick: onClick,
additionalAttributes: additionalAttributes,
);