moveSelectedLinesCommand method

TextLineCommandResult moveSelectedLinesCommand(
  1. List<String> lines, {
  2. required int direction,
})

Implementation

TextLineCommandResult moveSelectedLinesCommand(
  List<String> lines, {
  required int direction,
}) {
  return moveSelectedLines(
    lines,
    cursor: cursor,
    selectionBase: selectionBase,
    selectionExtent: selectionExtent,
    direction: direction,
  );
}