tripleTapInParagraph method

Future<void> tripleTapInParagraph(
  1. String nodeId,
  2. int offset, [
  3. Finder? superReaderFinder
])

Simulates a triple tap at the given offset within the paragraph with the given nodeId.

Implementation

Future<void> tripleTapInParagraph(String nodeId, int offset, [Finder? superReaderFinder]) async {
  await _tapInParagraph(nodeId, offset, 3, superReaderFinder);
}