deletePreviousOrSelectionCommand method

TextCommandResult deletePreviousOrSelectionCommand(
  1. List<String> graphemes
)

Implementation

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