TableHeaderCell constructor

const TableHeaderCell({
  1. String? abbr,
  2. int? rowSpan,
  3. int? colSpan,
  4. String? headers,
  5. ScopeType? scope,
  6. Key? key,
  7. NullableElementCallback? ref,
  8. String? id,
  9. String? title,
  10. String? style,
  11. String? className,
  12. bool? hidden,
  13. String? innerText,
  14. Widget? child,
  15. List<Widget>? children,
  16. EventCallback? onClick,
  17. Map<String, String>? additionalAttributes,
})

Implementation

const TableHeaderCell({
  String? abbr,
  int? rowSpan,
  int? colSpan,
  String? headers,
  ScopeType? scope,
  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(
        abbr: abbr,
        rowSpan: rowSpan,
        colSpan: colSpan,
        headers: headers,
        scope: scope,
        key: key,
        ref: ref,
        id: id,
        title: title,
        style: style,
        className: className,
        hidden: hidden,
        innerText: innerText,
        child: child,
        children: children,
        onClick: onClick,
        additionalAttributes: additionalAttributes,
      );