mirror of
https://github.com/bggRGjQaUbCoE/PiliPlus.git
synced 2026-07-25 13:00:14 +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;
|
|
}
|