FileLineDiff constructor

FileLineDiff({
  1. required String thisPath,
  2. required String thisName,
  3. required String otherPath,
  4. required String otherName,
  5. required int thisLineNo,
  6. required String? thisLine,
  7. required String? otherLine,
  8. required DiffType diffType,
})

Implementation

FileLineDiff({
  required this.thisPath,
  required this.thisName,
  required this.otherPath,
  required this.otherName,
  required this.thisLineNo,
  required this.thisLine,
  required this.otherLine,
  required this.diffType,
});