String emptyToDefault(String? value, String fallback) { return value == null || value.isEmpty ? fallback : value; }