isNoSpecialCharacter method

bool isNoSpecialCharacter()

Implementation

bool isNoSpecialCharacter() {
  return RegExp(r"^[a-zA-Z0-9 ]+$").hasMatch(this);
}