importPathStatementStatic static method

String importPathStatementStatic(
  1. List<String> projectPath
)

Implementation

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