Files
flutter-jdt-store/lib/utils/tool.dart
2023-12-22 07:32:13 +08:00

10 lines
175 B
Dart

class ToolFn {
// 字符串是否为空
static bool isBlank(String? str) {
if (str == null || str.isEmpty) {
return true;
}
return false;
}
}