run method
Implementation
Future<List<String>> run({
String? excludedLibs,
String? excludedPackages,
List<String> fileArgs = const [],
}) async {
if (await prepare(
excludedLibs: excludedLibs,
excludedPackages: excludedPackages,
)) {
final files = await findFiles(fileArgs);
return await detect(files);
}
return [];
}