getRowMinHeight method
Gets the minimum height constraint for a specific row.
Parameters:
index(int, required): Row index.
Returns: double? — minimum height, or null if unconstrained.
Implementation
double? getRowMinHeight(int index) {
return _heightConstraints?[index]?.min ?? _defaultHeightConstraint?.min;
}