@@ -1418,7 +1438,7 @@ abstract class MultiChildRenderObjectWrapper extends RenderObjectWrapper {
continue;// when these nodes are reordered, we just reassign the data
if(!idSet.add(child.key)){
throw'''If multiple keyed nodes exist as children of another node, they must have unique keys. $this has duplicate child key "${child.key}".''';
throw'''If multiple keyed nodes exist as children of another node, they must have unique keys. ${toStringName()} has multiple children with key "${child.key}".''';
}
}
returnfalse;
...
...
@@ -1609,7 +1629,7 @@ class ErrorWidget extends LeafRenderObjectWrapper {