class TargetEmojiMap { static const Map _map = { 'Iphone': '📱', 'Sepatu': '👟', 'Baju': '👕', 'Motor': '🏍️', 'Mobil': '🚗', 'Rumah': '🏠', 'Liburan': '✈️', 'Laptop': '💻', 'Pendidikan': '📚', 'Perhiasan': '💍', 'PS 5': '🎮', 'Olahraga': '🏋️', }; static String getEmoji(String label) { return _map[label] ?? '🎯'; } }