height property
double
get
height
Gets the total height of the table.
Calculates the sum of all row heights to determine the table's total vertical extent. This is the natural height the table would occupy without any constraints.
Returns total table height in logical pixels as a double.
Implementation
double get height {
return rowHeights.fold(0, (a, b) => a + b);
}