Returns true if str contains only printable ASCII characters (U+0000–U+007F).
true
str
bool isAscii(String str) => asciiReg.hasMatch(str);