isAlphabet method

bool isAlphabet()

Alphabet Only regex

Implementation

bool isAlphabet() => RegVal.hasMatch(
      this,
      RegexPattern.alphabetOnly,
    );