DartParser constructor

DartParser({
  1. required String rootPath,
})

Implementation

DartParser({required this.rootPath}) {
  libPath = p.join(rootPath, 'lib');
  _detectPackageName();
}