static String stringIsNull(String? pstring) { if (pstring == null) { return ""; } else if (pstring.isEmpty) { return ""; } else { return pstring; } }