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

5 lines
120 B
Dart
Raw Normal View History

2021-09-23 18:40:12 +08:00
extension StringNotNull on String? {
bool get notNull => this != null && this != '';
bool get isNull => !notNull;
2021-09-23 18:40:12 +08:00
}