skipClosingDelimiterCommand method

TextCursorCommandResult skipClosingDelimiterCommand(
  1. List<String> graphemes, {
  2. required List<String> closing,
  3. bool clearSelection = false,
})

Implementation

TextCursorCommandResult skipClosingDelimiterCommand(
  List<String> graphemes, {
  required List<String> closing,
  bool clearSelection = false,
}) {
  return skipClosingDelimiter(
    graphemes,
    cursorOffset: cursorOffset,
    selectionBaseOffset: selectionBaseOffset,
    selectionExtentOffset: selectionExtentOffset,
    closing: closing,
    clearSelection: clearSelection,
  );
}