recursivePackagesRun function
Each path is tested
poolSize
default to 4
Implementation
Future<void> recursivePackagesRun(List<String> paths,
{required FutureOr<dynamic> Function(String package) action,
bool? verbose,
int? poolSize}) =>
recursiveActions(paths,
action: action, verbose: verbose, poolSize: poolSize);