RATableRowData constructor

RATableRowData({
  1. required List<RATableCell> cells,
  2. bool isSelected = false,
  3. bool isExpanded = false,
  4. bool isIndeterminate = false,
  5. Widget? child,
  6. List<RATableRowData>? children,
})

Implementation

RATableRowData({
  required this.cells,
  this.isSelected = false,
  this.isExpanded = false,
  this.isIndeterminate = false,
  this.child,
  this.children,
});