isAlphabetOnly method
Checks if string consist only Alphabet. (No Whitespace)
Implementation
bool isAlphabetOnly() => hasMatch(this, r'^[a-zA-Z]+$');
Checks if string consist only Alphabet. (No Whitespace)
bool isAlphabetOnly() => hasMatch(this, r'^[a-zA-Z]+$');