Returns true if the given id is a valid Dart identifier.
true
id
bool isValidDartIdentifier(String id) => !isKeyWord(id) && isIdentifier(id);