duplicateSelectedLinesBelowCommand method

TextLineCommandResult duplicateSelectedLinesBelowCommand(
  1. List<String> lines
)

Implementation

TextLineCommandResult duplicateSelectedLinesBelowCommand(List<String> lines) {
  return duplicateSelectedLinesBelow(
    lines,
    cursor: cursor,
    selectionBase: selectionBase,
    selectionExtent: selectionExtent,
  );
}