I would like to sort hungarian String textes in a list, but i ran into a problem with accent characters.
For example:
final textList = ["Bb", "Aa", "Áa"];
textList.sort((a, b) => a.compareTo(b));
Output: ["Aa", "Bb", "Áa"]
But the current output have to be this: ["Aa", "Áa", "Bb"].
How can i solve this problem?