duplicateLinesBelow method

bool duplicateLinesBelow()

Duplicates the selected lines, or the current line, below the current block.

Implementation

bool duplicateLinesBelow() {
  final changed = _model.duplicateLinesBelow();
  if (changed) {
    notifyListeners();
  }
  return changed;
}