Heading2 constructor

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

Implementation

const Heading2({
  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,
      );