commentAnchorAt method

DiffCommentAnchor? commentAnchorAt(
  1. int renderLine, {
  2. DiffCommentSide? side,
})

Returns the comment anchor occupying renderLine.

Implementation

DiffCommentAnchor? commentAnchorAt(int renderLine, {DiffCommentSide? side}) {
  return _model.commentAnchorAt(renderLine, side: side);
}