operator == method

  1. @override
bool operator ==(
  1. Object other
)
override

check equality based on pointer address

Implementation

@override
bool operator ==(Object other) {
  if (identical(this, other)) return true;
  if (other is! LSLXmlNode) return false;
  return xmlPtr.address == other.xmlPtr.address;
}