ScrollableDiffView constructor

const ScrollableDiffView({
  1. Key? key,
  2. required List<DiffHunk> hunks,
  3. String? filePath,
  4. DiffColors? colors,
  5. double maxHeight = 400,
})

Implementation

const ScrollableDiffView({
  super.key,
  required this.hunks,
  this.filePath,
  this.colors,
  this.maxHeight = 400,
});