HookTask constructor

HookTask({
  1. required List<Pattern> include,
  2. List<Pattern> exclude = const [],
  3. String? workingDirectory,
})

Implementation

HookTask({
  required this.include,
  this.exclude = const [],
  this.workingDirectory,
}) : _always = false,
     id = const Uuid().v4();