canReuseStableProxyChildLayout function
Implementation
bool canReuseStableProxyChildLayout(RenderBox? child, BoxConstraints constraints) {
if (child == null || !child.hasSize || child.constraints != constraints) {
return false;
}
return _hasReusableStableLayoutChain(child);
}