findStart method

Position? findStart()

Return the first (or only) position in this marker / bookmark.

Implementation

Position? findStart() {
  var positions = find();
  return (positions == null || positions.isEmpty) ? null : positions.first;
}