createAnchor method

CellAnchor createAnchor(
  1. int offset
)

Implementation

CellAnchor createAnchor(int offset) {
  final anchor = CellAnchor(offset, owner: this);
  _anchors.add(anchor);
  return anchor;
}