CommitDiff constructor

CommitDiff({
  1. required List<FileDiff> filesDiff,
  2. required Commit thisCommit,
  3. required Commit otherCommit,
  4. required Map<DiffType, int> statistic,
})

Implementation

CommitDiff({
  required this.filesDiff,
  required this.thisCommit,
  required this.otherCommit,
  required this.statistic,
});