static String defaultStrDisplay(String? ori, [String replaceStr = "--"]) { return (ori == null || ori.isEmpty) ? replaceStr : ori; }