getIntrinsicWidth method
Returns the intrinsic width of this element.
Implementation
@override
int getIntrinsicWidth(int height) {
final sb = widget as SizedBox;
if (sb.width != null) return sb.width!;
return childElement?.getIntrinsicWidth(sb.height ?? height) ?? 0;
}