isAlphabet property

bool isAlphabet

Checks string is letter or not and return bool

Implementation

bool get isAlphabet => regex(r'^[a-zA-Z]+$');