8 lines
110 B
Dart
8 lines
110 B
Dart
|
|
|
|
bool isEmptyString(String? str) {
|
|
if (str == null || str.isEmpty) {
|
|
return true;
|
|
}
|
|
return false;
|
|
} |