PerCommandArgs constructor

const PerCommandArgs({
  1. required String commandName,
  2. List<String> projectPatterns = const [],
  3. List<String> excludePatterns = const [],
  4. Map<String, dynamic> options = const {},
})

Implementation

const PerCommandArgs({
  required this.commandName,
  this.projectPatterns = const [],
  this.excludePatterns = const [],
  this.options = const {},
});