isAlphabetOnly method

bool isAlphabetOnly()

Checks if string consist only Alphabet. (No Whitespace)

Implementation

bool isAlphabetOnly() => hasMatch(this, r'^[a-zA-Z]+$');