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