computeMaxIntrinsicWidth method

double computeMaxIntrinsicWidth(
  1. double height
)

Implementation

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