isAlphabet method

bool isAlphabet()

Checks whether the string is all aplhabets

Implementation

bool isAlphabet() => REGEXP_ALPHA.hasMatch(this);