hasAz static method

bool hasAz(
  1. String str
)

【含有英文】true

Implementation

static bool hasAz(String str) {
  return RegExp(".*[a-zA-z].*").hasMatch(str);
}