isLetter method

bool isLetter()

Implementation

bool isLetter() {
  final isMatch = RegExp("[A-Za-z]").hasMatch(this);
  return isMatch;
}