Dash path effect (#27)

This commit is contained in:
Xavier H
2020-03-12 23:16:41 +01:00
committed by GitHub
parent 511094262f
commit af9b69326a
34 changed files with 241 additions and 46 deletions

View File

@ -272,7 +272,7 @@ class ValueDelegate<T> {
bool isSameProperty(ValueDelegate other) {
if (identical(this, other)) return true;
return other is ValueDelegate<T> &&
const ListEquality().equals(other.keyPath, keyPath) &&
const ListEquality<String>().equals(other.keyPath, keyPath) &&
other.property == property;
}
}