getMinIntrinsicWidth method

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

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

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

Implementation

@override
double getMinIntrinsicWidth(double height) {
  return box.getMinIntrinsicWidth(height);
}