getIntrinsicWidth method
Returns the intrinsic width of this element.
Implementation
@override
int getIntrinsicWidth(int height) {
var maxW = 0;
for (final child in childElements) {
final w = child.getIntrinsicWidth(height);
if (w > maxW) maxW = w;
}
return maxW;
}