checkValidStringNew function

dynamic checkValidStringNew(
  1. String? value
)

Implementation

checkValidStringNew(String? value) {
  if (value == null || value == "null" || value == "<null>") {
    value = "";
  }
  return value.trim();
}