isSameProperty method
Implementation
bool isSameProperty(ValueDelegate other) {
if (identical(this, other)) return true;
return other is ValueDelegate<T> &&
const ListEquality<String>().equals(other.keyPath, keyPath) &&
other.property == property;
}