alphabetOnly constant
Pattern
const alphabetOnly
Alphabet Only regex (No Whitespace & Symbols)
Implementation
static const Pattern alphabetOnly = r'^[a-zA-Z]+$';
Alphabet Only regex (No Whitespace & Symbols)
static const Pattern alphabetOnly = r'^[a-zA-Z]+$';