unwrapSelection method

bool unwrapSelection()

Removes a matching surrounding delimiter pair around the current selection.

Implementation

bool unwrapSelection() {
  final changed = _model.unwrapSelection();
  if (changed) {
    notifyListeners();
  }
  return changed;
}