skipClosingDelimiterCommand method
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,
);
}