Files
cashier-telephone/lib/common/utils/func_tools.dart
2025-04-09 13:30:50 +08:00

8 lines
110 B
Dart

bool isEmptyString(String? str) {
if (str == null || str.isEmpty) {
return true;
}
return false;
}