toNullString method
Implementation
String toNullString() {
if (this == null ||
this!.trim().isEmpty ||
this!.trim().toLowerCase() == "null") {
return "";
}
return this!;
}
String toNullString() {
if (this == null ||
this!.trim().isEmpty ||
this!.trim().toLowerCase() == "null") {
return "";
}
return this!;
}