This commit is contained in:
2025-04-09 13:30:50 +08:00
commit a4a995d24c
154 changed files with 9580 additions and 0 deletions

View File

@@ -0,0 +1,8 @@
bool isEmptyString(String? str) {
if (str == null || str.isEmpty) {
return true;
}
return false;
}