isChar method

bool isChar()

检查字符串是否只包含字母。(没有空格)

Implementation

bool isChar() => _matches(RegexConst.char);