commentAnchorIndexAt method

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

Returns the index of the comment anchor occupying renderLine.

Implementation

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