redirect ugc to pgc

Signed-off-by: dom <githubaccount56556@proton.me>
This commit is contained in:
dom
2026-03-08 11:25:20 +08:00
parent a1f15b5da5
commit 01a74e191a
6 changed files with 34 additions and 12 deletions

View File

@@ -0,0 +1,4 @@
String? noneNullOrEmptyString(String? value) {
if (value == null || value.isEmpty) return null;
return value;
}