Returns string if not null or blank, otherwise defaultValue
String orDefaultIfBlank(String defaultValue) { return (this != null && this!.trim().isNotEmpty) ? this! : defaultValue; }