operator == method

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

Implementation

@override
bool operator ==(Object other) {
  return other is ExtendedPropertyDefinition &&
      ExtendedPropertyDefinition.IsEqualTo(this, other);
}