// dirty, e.g. if they have a builder callback. (Builder callbacks have a
// dirty, e.g. if they have a builder callback. (Builder callbacks have a
// 'BuildContext' argument which you can pass to Theme.of() and other
// 'BuildContext' argument which you can pass to Theme.of() and other
// InheritedWidget APIs which eventually trigger a rebuild.)
// InheritedWidget APIs which eventually trigger a rebuild.)
debugPrint('$runtimeType failed to implement reinvokeBuilders(), but got marked dirty');
assert((){
assert((){
'reinvokeBuilders() not implemented';
thrownewWidgetError('$runtimeType failed to implement reinvokeBuilders(), but got marked dirty.');
returnfalse;
});
});
}
}
...
@@ -1742,7 +1734,7 @@ class MultiChildRenderObjectElement<T extends MultiChildRenderObjectWidget> exte
...
@@ -1742,7 +1734,7 @@ class MultiChildRenderObjectElement<T extends MultiChildRenderObjectWidget> exte
continue;// when these nodes are reordered, we just reassign the data
continue;// when these nodes are reordered, we just reassign the data
if(!idSet.add(child.key)){
if(!idSet.add(child.key)){
throw'If multiple keyed nodes exist as children of another node, they must have unique keys. $widget has multiple children with key "${child.key}".';
thrownewWidgetError('If multiple keyed nodes exist as children of another node, they must have unique keys. $widget has multiple children with key "${child.key}".');
}
}
}
}
returnfalse;
returnfalse;
...
@@ -1771,6 +1763,18 @@ class MultiChildRenderObjectElement<T extends MultiChildRenderObjectWidget> exte
...
@@ -1771,6 +1763,18 @@ class MultiChildRenderObjectElement<T extends MultiChildRenderObjectWidget> exte