getIntrinsicHeight method
Computes the intrinsic height of this widget under the given width constraint.
Implementation
@override
int getIntrinsicHeight(int width) {
var totalHeight = 0;
for (final child in children) {
totalHeight += child.getIntrinsicHeight(width);
}
return totalHeight;
}