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