getFirstClassNameInFile function
Implementation
JSONString getFirstClassNameInFile(String codePath) {
try {
final f = JSONStringResult
.parse(getClassNameListInFile(codePath))
.dataAsList<String>()
?.first;
return f ?? "";
} catch (e) {
return "";
}
}