FieldSet constructor

const FieldSet({
  1. String? name,
  2. String? form,
  3. bool? disabled,
  4. Key? key,
  5. NullableElementCallback? ref,
  6. String? id,
  7. String? title,
  8. String? style,
  9. String? className,
  10. bool? hidden,
  11. String? innerText,
  12. Widget? child,
  13. List<Widget>? children,
  14. EventCallback? onClick,
  15. Map<String, String>? additionalAttributes,
})

Implementation

const FieldSet({
  this.name,
  this.form,
  this.disabled,
  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,
      );