wrapSelectionCommand method
Implementation
TextCommandResult wrapSelectionCommand(
List<String> graphemes, {
required List<String> before,
List<String>? after,
}) {
return wrapSelection(
graphemes,
cursorOffset: cursorOffset,
selectionBaseOffset: selectionBaseOffset,
selectionExtentOffset: selectionExtentOffset,
before: before,
after: after,
);
}