static String nullSafeString(String? value, {String? defaultValue}) { return value == null ? (defaultValue == null ? "" : defaultValue) : value; }