Returns true if this identifier is valid.
bool isValidIdentifier(String identifer) => RegExp(r'^[A-Za-z_][A-Za-z0-9_]*$').hasMatch(identifer);