TableRow constructor

const TableRow({
  1. Key? key,
  2. String? id,
  3. String? title,
  4. String? style,
  5. String? classAttribute,
  6. int? tabIndex,
  7. bool? draggable,
  8. bool? contentEditable,
  9. bool? hidden,
  10. String? onClickAttribute,
  11. String? innerText,
  12. List<Widget>? children,
  13. EventCallback? onClick,
  14. Map<String, String>? additionalAttributes,
})

Implementation

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