insertLine method

void insertLine(
  1. int y,
  2. int n,
  3. Cell? cell
)

Inserts n lines at y within full bounds.

Upstream: third_party/ultraviolet/buffer.go (InsertLine).

Implementation

void insertLine(int y, int n, Cell? cell) =>
    insertLineArea(y, n, cell, bounds());