extractCharsetFromBundle static method
Implementation
static String extractCharsetFromBundle(String encoded) {
List<String> x = [];
for (int i = 0; i < encoded.length; i++) {
if (!x.contains(encoded[i])) {
x.add(encoded[i]);
} else {
break;
}
}
return x.join();
}