1
0
mirror of https://gitlab.com/comunic/comunicmobile synced 2025-06-19 00:05:16 +00:00

Fix empty fields

This commit is contained in:
2020-05-01 20:15:28 +02:00
parent 519c68b092
commit 8f0f50d0e4
2 changed files with 7 additions and 3 deletions

View File

@ -4,3 +4,7 @@
/// Casting helper
T cast<T>(dynamic val) => val is T ? val : null;
/// Turn null and "null" into ""
String nullToEmpty(String input) =>
input == null || input == "null" ? "" : input;