Files
UUVPN/flutter/lib/common/StringUtils.dart
T
2023-06-25 11:50:55 +08:00

6 lines
108 B
Dart

class StringUtils {
static bool isNullOrEmpty(String? str) {
return str == null || str.isEmpty;
}
}