getMinIntrinsicHeight method

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

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

The minimum intrinsic height is the smallest height the child can reasonably have while still being functional.

Implementation

@override
double getMinIntrinsicHeight(double width) {
  return box.getMinIntrinsicHeight(width);
}