visibleRowsHeight property

double visibleRowsHeight

visibleHeadersWidth returns the overall width of all visible table rows, including nested ones

Implementation

double get visibleRowsHeight => visibleRows
    .map<double>((e) => e.height ?? defaultsRowHeight)
    .fold(0, (a, b) => a + b);