importPathStatementStatic static method
Implementation
static String importPathStatementStatic(List<String> projectPath) {
final revised = List<String>.from(projectPath);
if(revised[0] == AFProjectPaths.libFolder) {
revised.removeAt(0);
}
return revised.join('/');
}