computeMinIntrinsicHeight method

double computeMinIntrinsicHeight(
  1. double width
)

Implementation

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