getClassName function
Gets the name of the class
Implementation
String getClassName(ClassDeclaration node) {
return node.declaredFragment?.name ?? node.name.lexeme;
}
Gets the name of the class
String getClassName(ClassDeclaration node) {
return node.declaredFragment?.name ?? node.name.lexeme;
}