selectionStart method

void selectionStart(
  1. int row,
  2. int col,
  3. bool rightHalf,
  4. int kind,
)

Implementation

void selectionStart(int row, int col, bool rightHalf, int kind) {
  _engine?.selectionStart(row, col, rightHalf, kind);
  _selectionActive = true;
  notifyListeners();
}