children property

children returns nested columns to this one.

Implementation

List<ExpandableTableHeader>? get children => _children;
void children=(List<ExpandableTableHeader>? value)

children defines columns nested to this, populating this list will create an expandable column.

Implementation

set children(List<ExpandableTableHeader>? value) {
  _removeChildrenListener();
  _children = value;
  _addChildrenListener();
  notifyListeners();
}