toggleNumberedListCommand method

TextLineCommandResult toggleNumberedListCommand(
  1. List<String> lines, {
  2. int startAt = 1,
})

Implementation

TextLineCommandResult toggleNumberedListCommand(
  List<String> lines, {
  int startAt = 1,
}) {
  return toggleNumberedList(
    lines,
    cursor: cursor,
    selectionBase: selectionBase,
    selectionExtent: selectionExtent,
    startAt: startAt,
  );
}