mirror of
https://github.com/bggRGjQaUbCoE/PiliPlus.git
synced 2026-04-20 03:06:59 +08:00
5 lines
116 B
Dart
5 lines
116 B
Dart
String? noneNullOrEmptyString(String? value) {
|
|
if (value == null || value.isEmpty) return null;
|
|
return value;
|
|
}
|