unwrapSelectionCommand method

TextCommandResult unwrapSelectionCommand(
  1. List<String> graphemes, {
  2. required Map<String, String> surroundPairs,
})

Implementation

TextCommandResult unwrapSelectionCommand(
  List<String> graphemes, {
  required Map<String, String> surroundPairs,
}) {
  return unwrapSelection(
    graphemes,
    cursorOffset: cursorOffset,
    selectionBaseOffset: selectionBaseOffset,
    selectionExtentOffset: selectionExtentOffset,
    surroundPairs: surroundPairs,
  );
}