getMaxIntrinsicHeight method

  1. @override
double getMaxIntrinsicHeight(
  1. double width
)
override

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

The intrinsic height is the natural height the child would prefer, independent of external constraints.

Implementation

@override
double getMaxIntrinsicHeight(double width) {
  return renderBox.getMaxIntrinsicHeight(width);
}