operator == method
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;
}