TableAdvancedRow constructor

TableAdvancedRow({
  1. required DataRow data,
  2. BoxDecoration style(
    1. BuildContext context,
    2. int index
    )?,
  3. bool? checked,
  4. bool? disabled,
  5. Widget? expandedWidget,
  6. List<Widget>? actions,
})

Configuration for rows in TableAdvanced.

You can use this class to specify row content, decoration and enabled actions.

Implementation

TableAdvancedRow({
  required this.data,
  this.style,
  this.checked,
  this.disabled,
  this.expandedWidget,
  this.actions,
});