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