computeMaxIntrinsicHeight method

double computeMaxIntrinsicHeight(
  1. double width
)

Implementation

double computeMaxIntrinsicHeight(double width) {
  return _getIntrinsicSize(
      sizingDirection: Axis.vertical,
      extent: width,
      childSize: (Widget child, double? extent) => child.box!.height);
}