ListTableRow constructor

const ListTableRow({
  1. Decoration? decoration,
  2. IndexedWidgetBuilder? builder,
  3. double? itemExtent = _kHeaderHeight,
  4. RowPressedCallback? onPressed,
  5. RowPressedCallback? onSecondaryPress,
  6. List<Widget>? children,
})

Creates a header in a ListTable.

Implementation

const ListTableRow({
  this.decoration,
  this.builder,
  this.itemExtent = _kHeaderHeight,
  this.onPressed,
  this.onSecondaryPress,
  this.children,
}) : assert(children == null || builder == null);