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

5 lines
120 B
Dart

extension StringNotNull on String? {
bool get notNull => this != null && this != '';
bool get isNull => !notNull;
}