tripleTapInParagraph method
Future<void>
tripleTapInParagraph(
- String nodeId,
- int offset, {
- TextAffinity affinity = TextAffinity.downstream,
- Finder? superEditorFinder,
Simulates a triple tap at the given offset
within the paragraph with the given
nodeId
.
Implementation
Future<void> tripleTapInParagraph(
String nodeId,
int offset, {
TextAffinity affinity = TextAffinity.downstream,
Finder? superEditorFinder,
}) async {
await _tapInParagraph(nodeId, offset, affinity, 3, superEditorFinder);
}