cashier_reserve_app/lib/common/utils/func_tools.dart

8 lines
110 B
Dart

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