DiffApplyOutput constructor

const DiffApplyOutput({
  1. required bool success,
  2. required int linesChanged,
  3. required String newContent,
})

Implementation

const DiffApplyOutput({
  required this.success,
  required this.linesChanged,
  required this.newContent,
});