GitApplyPatchStepConfig constructor

GitApplyPatchStepConfig({
  1. required String id,
  2. required String patchPath,
  3. String? targetDirectory,
  4. List<String> needs = const [],
})

Implementation

GitApplyPatchStepConfig({
  required super.id,
  required this.patchPath,
  this.targetDirectory,
  super.needs,
});