TextSelectionPoint constructor

const TextSelectionPoint(Offset point, TextDirection direction)

Creates a description of a point in a text selection.

The point argument must not be null.

Implementation

const TextSelectionPoint(this.point, this.direction)
    : assert(point != null);