indentSelection method

void indentSelection(
  1. bool isIncrease
)

Implementation

void indentSelection(bool isIncrease) {
  if (selection.isCollapsed) {
    _indentSelectionFormat(isIncrease);
  } else {
    _indentSelectionEachLine(isIncrease);
  }
}