isValidName method

bool isValidName()

Implementation

bool isValidName() {
  return RegExp("[a-zA-Z]").hasMatch(this);
}