deleteSelectionCommand method

TextCommandResult deleteSelectionCommand(
  1. List<String> graphemes
)

Implementation

TextCommandResult deleteSelectionCommand(List<String> graphemes) {
  return deleteSelection(
    graphemes,
    cursorOffset: cursorOffset,
    selectionBaseOffset: selectionBaseOffset,
    selectionExtentOffset: selectionExtentOffset,
  );
}