CleanService constructor
CleanService(
- ColorizeLogger logger, {
- required bool dryRun,
- Directory? projectRoot,
- Iterable<
String> protectedPaths = const [],
Implementation
CleanService(
this.logger, {
required this.dryRun,
Directory? projectRoot,
Iterable<String> protectedPaths = const [],
}) : projectRoot = projectRoot ?? Directory.current,
protectedPaths = protectedPaths.toSet();