computeMinIntrinsicHeight method

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

Implementation

@override
double computeMinIntrinsicHeight(double width) {
  double height = 0;
  for (RenderBox box in children) {
    height += box.getMinIntrinsicHeight(double.infinity);
  }
  return height;
}