toggleLinePrefixCommand method
Implementation
TextLineCommandResult toggleLinePrefixCommand(
List<String> lines, {
required String prefix,
bool addSpaceWhenNonEmpty = true,
bool skipBlankLinesWhenChecking = true,
}) {
return toggleLinePrefix(
lines,
cursor: cursor,
selectionBase: selectionBase,
selectionExtent: selectionExtent,
prefix: prefix,
addSpaceWhenNonEmpty: addSpaceWhenNonEmpty,
skipBlankLinesWhenChecking: skipBlankLinesWhenChecking,
);
}