CellDetails constructor

CellDetails({
  1. required ExpandableTableHeader? headerParent,
  2. required ExpandableTableRow? rowParent,
  3. required ExpandableTableHeader? header,
  4. required ExpandableTableRow? row,
})

CellDetails class constructor. This class contains the details of a cell, such as the instance of the row and column it belongs to, furthermore if the cell is inside a nested row or column it is possible to access the instance of the parent row or column

Implementation

CellDetails({
  required this.headerParent,
  required this.rowParent,
  required this.header,
  required this.row,
});