static String buildStringResult(String? result) { if (result == null || result.isEmpty) { return ""; } return result; }