DiffLine constructor
const
DiffLine({
- required DiffLineType type,
- required String content,
- int? oldLineNumber,
- int? newLineNumber,
Creates a new diff line.
Implementation
const DiffLine({
required this.type,
required this.content,
this.oldLineNumber,
this.newLineNumber,
});