1bf69048f3
update ios project
6 lines
108 B
Dart
6 lines
108 B
Dart
class StringUtils {
|
|
static bool isNullOrEmpty(String? str) {
|
|
return str == null || str.isEmpty;
|
|
}
|
|
}
|