getFlag static method
Implementation
static String getFlag(String code) {
// https://emojipedia.org/fr/drapeau-étatsunis/
switch (code) {
case 'fr':
return '🇫🇷';
case 'es':
return '🇪🇸';
case 'ht':
return 'ðŸ‡ðŸ‡¹';
case '🇺🇸':
default:
return '🇺🇸';
}
}