Question
I'm running into an issue where characters like 'ö' throwing an error, then I noticed this part in the code:
bool get isAscii {
for (var cu in codeUnits) {
if (cu > 127) return false;
}
return true;
}
Is there a reason to not include all 255 ASCII characters?
Best regards
Question
I'm running into an issue where characters like 'ö' throwing an error, then I noticed this part in the code:
Is there a reason to not include all 255 ASCII characters?
Best regards