Returns the Size of the child widget.
child
If the child is not found, returns null.
Size? getChildSize() { final RenderBox? box = getRenderBox(); if (box != null) return box.size; return null; }