transformWordOrAdjacentDocumentCommand method
TextCommandResult
transformWordOrAdjacentDocumentCommand(
- TextDocument document, {
- required String transform(
- String text
Implementation
TextCommandResult transformWordOrAdjacentDocumentCommand(
TextDocument document, {
required String Function(String text) transform,
}) {
return textTransformWordOrAdjacent(
document: document,
state: this,
transform: transform,
);
}