String toSafeString({String defaultValue = ""}) { return isNullOrEmpty() ? defaultValue : toString().trim(); }