operator == method

bool operator ==(
  1. Object other
)
override
Determines whether two specified instances of IndexedPropertyDefinition are equal. First indexed property definition. Second indexed property definition.

Implementation

bool operator ==(other) {
  return other is IndexedPropertyDefinition && IsEqualTo(this, other);
}