calculateExpandedHeight method

double calculateExpandedHeight(
  1. double flexFactor
)

Implementation

double calculateExpandedHeight(double flexFactor) {
  if (rowHeightMode is! RowHeightExpanded) {
    return 0;
  }
  height = (rowHeightMode as RowHeightExpanded).calculate(flexFactor);
  _validateHeight(height);
  return height;
}