getTextBoundaryAt method

  1. @override
TextRange getTextBoundaryAt(
  1. int position
)
override

Returns the text boundary range that encloses the input position.

The returned TextRange may contain -1, which indicates no boundaries can be found in that direction.

Implementation

@override
TextRange getTextBoundaryAt(int position) => _paragraph.getWordBoundary(TextPosition(offset: max(position, 0)));