getAtOffset method

List<TextExtmark> getAtOffset(
  1. int offset
)

Implementation

List<TextExtmark> getAtOffset(int offset) {
  return _sorted(
    _extmarks.values.where((extmark) => extmark.containsOffset(offset)),
  );
}