computeMaxIntrinsicWidth method

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

Implementation

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