DiffLine constructor

const DiffLine({
  1. required DiffLineType type,
  2. required String content,
  3. int? oldLineNumber,
  4. int? newLineNumber,
})

Creates a new diff line.

Implementation

const DiffLine({
  required this.type,
  required this.content,
  this.oldLineNumber,
  this.newLineNumber,
});