getMaxIntrinsicWidth method
Computes the maximum width this box could have for the given height.
Used for intrinsic sizing calculations.
Implementation
double getMaxIntrinsicWidth(double height) {
final layoutHandle = boxLayout.createLayoutHandle(this);
return layoutHandle.computeMaxIntrinsicWidth(height);
}