isSameProperty method

bool isSameProperty(
  1. ValueDelegate other
)

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;
}