DiffCommentBlock constructor

const DiffCommentBlock({
  1. required int renderLine,
  2. required Widget child,
  3. required int height,
  4. DiffCommentSide? side,
})

Creates a diff comment block.

Implementation

const DiffCommentBlock({
  required this.renderLine,
  required this.child,
  required this.height,
  this.side,
});