getDependenciesPath method

Set<String> getDependenciesPath(
  1. String filePath
)

Method which returns back the dependant's paths of a class file

Implementation

Set<String> getDependenciesPath(String filePath) {
  _dirName = path.dirname(filePath);
  final paths = _getDependenciesPath(filePath);
  reset();
  return paths;
}