If the string is empty, return the value.
example
String gender = user.gender.or(null);
String or(String value) => isEmpty ? value : this;