visibleColumns property

List<PlutoColumn> visibleColumns

Returns a non-hidden column from the column to be grouped.

Implementation

List<PlutoColumn> get visibleColumns =>
    columns.where((e) => !e.hide).toList();