Files
dde_gesture_manager/app/lib/extensions/string_extension.dart
T
2021-09-23 18:40:12 +08:00

3 lines
88 B
Dart

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