getFoldRangeAtCurrentLine method

FoldRange? getFoldRangeAtCurrentLine(
  1. int lineIndex
)

Get the FoldRange information if the corresponding line is included in a foldable block.

Implementation

FoldRange? getFoldRangeAtCurrentLine(int lineIndex) {
  return foldings[lineIndex];
}