4 lines
95 B
Dart
4 lines
95 B
Dart
extension CompareExtension on Object? {
|
|
bool diff(other) => this != null && this != other;
|
|
}
|