FileDiff constructor

FileDiff({
  1. required File thisFile,
  2. required String thisName,
  3. required File otherFile,
  4. required String otherName,
  5. required Map<int, FileLineDiff> linesDiff,
  6. required DiffType diffType,
})

Implementation

FileDiff({
  required this.thisFile,
  required this.thisName,
  required this.otherFile,
  required this.otherName,
  required this.linesDiff,
  required this.diffType,
});