A simple dart package to convert alpha 2 country codes (SG) to emoji flags ๐ธ๐ฌ ๐ค
Import the class into your dart file.
import 'package:emoji_flag_converter/emoji_flag_converter.dart';
Then you can call it in your code like this to get the emoji flag in return.
String convertToEmoji(String countryCode) {
return EmojiConverter.fromAlpha2CountryCode(code);
}
And that's it!