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