getMaxIntrinsicWidth method

  1. @override
double getMaxIntrinsicWidth(
  1. double height
)
override

Returns the maximum intrinsic width of this child at the given height.

The intrinsic width is the natural width the child would prefer, independent of external constraints. This is used for layout algorithms that need to know the child's preferred dimensions.

Implementation

@override
double getMaxIntrinsicWidth(double height) {
  return renderBox.getMaxIntrinsicWidth(height);
}