toggleChecklistStateCommand method
Implementation
TextLineCommandResult toggleChecklistStateCommand(
List<String> lines, {
String checkedMarker = 'x',
}) {
return toggleChecklistState(
lines,
cursor: cursor,
selectionBase: selectionBase,
selectionExtent: selectionExtent,
checkedMarker: checkedMarker,
);
}