static String getFirstChart(String? name) { String chart = ""; if (name != null && name.isNotEmpty) { chart = name.substring(0, 1); } return chart; }