【全为字母】返回true 否则false All letters Returns true otherwise false
All letters
static bool isAz(String str) { return RegExp(r"^[ZA-ZZa-z_]+$").hasMatch(str); }