isAz static method

bool isAz(
  1. String str
)

【全为英文】返回true 否则false

Implementation

static bool isAz(String str) {
  return RegExp(r"^[ZA-ZZa-z_]+$").hasMatch(str);
}