getClassName static method
Implementation
static String getClassName(Element element) {
final visitor = MainAppVisitor();
element.visitChildren(visitor);
return visitor.className ?? '';
}
static String getClassName(Element element) {
final visitor = MainAppVisitor();
element.visitChildren(visitor);
return visitor.className ?? '';
}