mirror of
https://github.com/bggRGjQaUbCoE/PiliPlus.git
synced 2026-04-20 03:06:59 +08:00
4
lib/utils/parse_string.dart
Normal file
4
lib/utils/parse_string.dart
Normal file
@@ -0,0 +1,4 @@
|
||||
String? noneNullOrEmptyString(String? value) {
|
||||
if (value == null || value.isEmpty) return null;
|
||||
return value;
|
||||
}
|
||||
Reference in New Issue
Block a user