FileLineDiff constructor

FileLineDiff({
  1. required String thisPath,
  2. required String otherPath,
  3. required int thisLineNo,
  4. required int diffScore,
  5. required DiffType diffType,
})

Implementation

FileLineDiff({
  required this.thisPath,
  required this.otherPath,
  required this.thisLineNo,
  required this.diffScore,
  required this.diffType,
});