Performs a logical xor operation between this Boolean and the other one.
xor
other
bool? xor(bool other) { if (this == null || other == null) return null; return this != other; }