Returns the string if it is not null, empty or blank, otherwise returns the specified string.
String? ifBlank(String? newString) => this != null && this!.isNotBlank ? this : newString;