static bool validateNameWithoutCharacters(String value) { return RegExp(r"^[a-zA-Z0-9]+$").hasMatch(value); }