findChildByKey method
Implementation
@override
ChildLayout? findChildByKey(Object key) {
Box? child = firstChild;
while (child != null) {
if (child.parentData.layoutData?.key == key) {
return BoxChildLayout(child);
}
child = child.parentData.nextSibling;
}
return null;
}