Files
dde_gesture_manager/app/lib/extensions/compare_extension.dart
T

4 lines
95 B
Dart

extension CompareExtension on Object? {
bool diff(other) => this != null && this != other;
}