Index: pkg/template_binding/lib/src/list_diff.dart |
diff --git a/pkg/template_binding/lib/src/list_diff.dart b/pkg/template_binding/lib/src/list_diff.dart |
index ba96d15bc586cfbfbc897f2b3af998287dd42268..fc7430dd352ba46bfe71c2a560cd7609e8ac2530 100644 |
--- a/pkg/template_binding/lib/src/list_diff.dart |
+++ b/pkg/template_binding/lib/src/list_diff.dart |
@@ -39,7 +39,7 @@ class ListChangeDelta implements ListChangeRecord { |
int get removedCount => _removed.length; |
/** Returns true if the provided index was changed by this operation. */ |
- bool changes(key) { |
+ bool indexChanged(key) { |
// If key isn't an int, or before the index, then it wasn't changed. |
if (key is! int || key < index) return false; |